discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Building from source, again

FH
Father Horton
Tue, Aug 29, 2023 7:15 PM

I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, so I
tried building vanilla OpenSCAD from source, following the directions here:
https://github.com/openscad/openscad/#building-for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that it
expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, so I tried building vanilla OpenSCAD from source, following the directions here: https://github.com/openscad/openscad/#building-for-linuxbsd When I do this: sudo ./scripts/uni-get-dependencies.sh I get: Package qt5-default is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'qt5-default' has no installation candidate installed qt5qt-default to enable qmake I Googled around and discovered that qt5-default is now called qt5-assistant. I installed that and cleared the above warning. ./scripts/check-dependencies.sh runs with no problem. qmake returns the qmake help message, so it's not finding something that it expects. Thoughts? uname -r = 5.15.90.1-microsoft-standard-WSL2
GS
Guenther Sohler
Tue, Aug 29, 2023 7:29 PM

Hi father,
Great that you Managed to Install Most of the dependencies. I think, next
step on the list IS something Like creating the build directory and running
cmake. Maybe check again the instructions in my Site ?
Greets from Spain

On Tuesday, August 29, 2023, Father Horton fatherhorton@gmail.com wrote:

I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, so
I tried building vanilla OpenSCAD from source, following the directions
here: https://github.com/openscad/openscad/#building-for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that it
expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

--
Null

Hi father, Great that you Managed to Install Most of the dependencies. I think, next step on the list IS something Like creating the build directory and running cmake. Maybe check again the instructions in my Site ? Greets from Spain On Tuesday, August 29, 2023, Father Horton <fatherhorton@gmail.com> wrote: > I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, so > I tried building vanilla OpenSCAD from source, following the directions > here: https://github.com/openscad/openscad/#building-for-linuxbsd > > When I do this: > > sudo ./scripts/uni-get-dependencies.sh > > I get: > > Package qt5-default is not available, but is referred to by another > package. > This may mean that the package is missing, has been obsoleted, or > is only available from another source > > E: Package 'qt5-default' has no installation candidate > installed qt5qt-default to enable qmake > > I Googled around and discovered that qt5-default is now called > qt5-assistant. I installed that and cleared the above warning. > > ./scripts/check-dependencies.sh > > runs with no problem. > > qmake > > returns the qmake help message, so it's not finding something that it > expects. > > Thoughts? > > uname -r = 5.15.90.1-microsoft-standard-WSL2 > -- Null
FH
Father Horton
Wed, Aug 30, 2023 2:04 AM

This builds without errors:

git clone https://github.com/gsohler/openscad.git
cd openscad
git checkout python-pr3
git submodule update --init --recursive
sudo ./scripts/uni-get-dependencies.sh
sudo apt install qt5-assistant
./scripts/check-dependencies.sh
mkdir build
cd build
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 ..
make
sudo make install

I started it, went into preferences and enabled python, and restarted it.
It doesn't respond to any inputs and I have to go back to the shell and
kill the process.

On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler guenther.sohler@gmail.com
wrote:

Hi father,
Great that you Managed to Install Most of the dependencies. I think, next
step on the list IS something Like creating the build directory and running
cmake. Maybe check again the instructions in my Site ?
Greets from Spain

On Tuesday, August 29, 2023, Father Horton fatherhorton@gmail.com wrote:

I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, so
I tried building vanilla OpenSCAD from source, following the directions
here: https://github.com/openscad/openscad/#building-for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that it
expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

--
Null


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

This builds without errors: git clone https://github.com/gsohler/openscad.git cd openscad git checkout python-pr3 git submodule update --init --recursive sudo ./scripts/uni-get-dependencies.sh sudo apt install qt5-assistant ./scripts/check-dependencies.sh mkdir build cd build cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 .. make sudo make install I started it, went into preferences and enabled python, and restarted it. It doesn't respond to any inputs and I have to go back to the shell and kill the process. On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler <guenther.sohler@gmail.com> wrote: > Hi father, > Great that you Managed to Install Most of the dependencies. I think, next > step on the list IS something Like creating the build directory and running > cmake. Maybe check again the instructions in my Site ? > Greets from Spain > > > On Tuesday, August 29, 2023, Father Horton <fatherhorton@gmail.com> wrote: > >> I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, so >> I tried building vanilla OpenSCAD from source, following the directions >> here: https://github.com/openscad/openscad/#building-for-linuxbsd >> >> When I do this: >> >> sudo ./scripts/uni-get-dependencies.sh >> >> I get: >> >> Package qt5-default is not available, but is referred to by another >> package. >> This may mean that the package is missing, has been obsoleted, or >> is only available from another source >> >> E: Package 'qt5-default' has no installation candidate >> installed qt5qt-default to enable qmake >> >> I Googled around and discovered that qt5-default is now called >> qt5-assistant. I installed that and cleared the above warning. >> >> ./scripts/check-dependencies.sh >> >> runs with no problem. >> >> qmake >> >> returns the qmake help message, so it's not finding something that it >> expects. >> >> Thoughts? >> >> uname -r = 5.15.90.1-microsoft-standard-WSL2 >> > > > -- > Null > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
FH
Father Horton
Wed, Aug 30, 2023 2:16 AM

I take it back. It responds to keystrokes but not the mouse. I'm willing to
say it's a WSL2 issue.

On Tue, Aug 29, 2023 at 9:04 PM Father Horton fatherhorton@gmail.com
wrote:

This builds without errors:

git clone https://github.com/gsohler/openscad.git
cd openscad
git checkout python-pr3
git submodule update --init --recursive
sudo ./scripts/uni-get-dependencies.sh
sudo apt install qt5-assistant
./scripts/check-dependencies.sh
mkdir build
cd build
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 ..
make
sudo make install

I started it, went into preferences and enabled python, and restarted it.
It doesn't respond to any inputs and I have to go back to the shell and
kill the process.

On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler guenther.sohler@gmail.com
wrote:

Hi father,
Great that you Managed to Install Most of the dependencies. I think, next
step on the list IS something Like creating the build directory and running
cmake. Maybe check again the instructions in my Site ?
Greets from Spain

On Tuesday, August 29, 2023, Father Horton fatherhorton@gmail.com
wrote:

I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble,
so I tried building vanilla OpenSCAD from source, following the directions
here: https://github.com/openscad/openscad/#building-for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that it
expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

--
Null


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

I take it back. It responds to keystrokes but not the mouse. I'm willing to say it's a WSL2 issue. On Tue, Aug 29, 2023 at 9:04 PM Father Horton <fatherhorton@gmail.com> wrote: > This builds without errors: > > git clone https://github.com/gsohler/openscad.git > cd openscad > git checkout python-pr3 > git submodule update --init --recursive > sudo ./scripts/uni-get-dependencies.sh > sudo apt install qt5-assistant > ./scripts/check-dependencies.sh > mkdir build > cd build > cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 .. > make > sudo make install > > I started it, went into preferences and enabled python, and restarted it. > It doesn't respond to any inputs and I have to go back to the shell and > kill the process. > > On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler <guenther.sohler@gmail.com> > wrote: > >> Hi father, >> Great that you Managed to Install Most of the dependencies. I think, next >> step on the list IS something Like creating the build directory and running >> cmake. Maybe check again the instructions in my Site ? >> Greets from Spain >> >> >> On Tuesday, August 29, 2023, Father Horton <fatherhorton@gmail.com> >> wrote: >> >>> I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, >>> so I tried building vanilla OpenSCAD from source, following the directions >>> here: https://github.com/openscad/openscad/#building-for-linuxbsd >>> >>> When I do this: >>> >>> sudo ./scripts/uni-get-dependencies.sh >>> >>> I get: >>> >>> Package qt5-default is not available, but is referred to by another >>> package. >>> This may mean that the package is missing, has been obsoleted, or >>> is only available from another source >>> >>> E: Package 'qt5-default' has no installation candidate >>> installed qt5qt-default to enable qmake >>> >>> I Googled around and discovered that qt5-default is now called >>> qt5-assistant. I installed that and cleared the above warning. >>> >>> ./scripts/check-dependencies.sh >>> >>> runs with no problem. >>> >>> qmake >>> >>> returns the qmake help message, so it's not finding something that it >>> expects. >>> >>> Thoughts? >>> >>> uname -r = 5.15.90.1-microsoft-standard-WSL2 >>> >> >> >> -- >> Null >> _______________________________________________ >> OpenSCAD mailing list >> To unsubscribe send an email to discuss-leave@lists.openscad.org >> >
GS
Guenther Sohler
Wed, Aug 30, 2023 7:14 AM

Great that IT builds
Can you create a test.py with
cube().output()
And start openscad test.py
To See If If Makes a difference?
IT will ask you whether ,you Trust into that File.

Father Horton fatherhorton@gmail.com schrieb am Mi., 30. Aug. 2023, 04:05:

This builds without errors:

git clone https://github.com/gsohler/openscad.git
cd openscad
git checkout python-pr3
git submodule update --init --recursive
sudo ./scripts/uni-get-dependencies.sh
sudo apt install qt5-assistant
./scripts/check-dependencies.sh
mkdir build
cd build
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 ..
make
sudo make install

I started it, went into preferences and enabled python, and restarted it.
It doesn't respond to any inputs and I have to go back to the shell and
kill the process.

On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler guenther.sohler@gmail.com
wrote:

Hi father,
Great that you Managed to Install Most of the dependencies. I think, next
step on the list IS something Like creating the build directory and running
cmake. Maybe check again the instructions in my Site ?
Greets from Spain

On Tuesday, August 29, 2023, Father Horton fatherhorton@gmail.com
wrote:

I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble,
so I tried building vanilla OpenSCAD from source, following the directions
here: https://github.com/openscad/openscad/#building-for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that it
expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

--
Null


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

Great that IT builds Can you create a test.py with cube().output() And start openscad test.py To See If If Makes a difference? IT will ask you whether ,you Trust into that File. Father Horton <fatherhorton@gmail.com> schrieb am Mi., 30. Aug. 2023, 04:05: > This builds without errors: > > git clone https://github.com/gsohler/openscad.git > cd openscad > git checkout python-pr3 > git submodule update --init --recursive > sudo ./scripts/uni-get-dependencies.sh > sudo apt install qt5-assistant > ./scripts/check-dependencies.sh > mkdir build > cd build > cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 .. > make > sudo make install > > I started it, went into preferences and enabled python, and restarted it. > It doesn't respond to any inputs and I have to go back to the shell and > kill the process. > > On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler <guenther.sohler@gmail.com> > wrote: > >> Hi father, >> Great that you Managed to Install Most of the dependencies. I think, next >> step on the list IS something Like creating the build directory and running >> cmake. Maybe check again the instructions in my Site ? >> Greets from Spain >> >> >> On Tuesday, August 29, 2023, Father Horton <fatherhorton@gmail.com> >> wrote: >> >>> I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, >>> so I tried building vanilla OpenSCAD from source, following the directions >>> here: https://github.com/openscad/openscad/#building-for-linuxbsd >>> >>> When I do this: >>> >>> sudo ./scripts/uni-get-dependencies.sh >>> >>> I get: >>> >>> Package qt5-default is not available, but is referred to by another >>> package. >>> This may mean that the package is missing, has been obsoleted, or >>> is only available from another source >>> >>> E: Package 'qt5-default' has no installation candidate >>> installed qt5qt-default to enable qmake >>> >>> I Googled around and discovered that qt5-default is now called >>> qt5-assistant. I installed that and cleared the above warning. >>> >>> ./scripts/check-dependencies.sh >>> >>> runs with no problem. >>> >>> qmake >>> >>> returns the qmake help message, so it's not finding something that it >>> expects. >>> >>> Thoughts? >>> >>> uname -r = 5.15.90.1-microsoft-standard-WSL2 >>> >> >> >> -- >> Null >> _______________________________________________ >> OpenSCAD mailing list >> To unsubscribe send an email to discuss-leave@lists.openscad.org >> > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
GS
Guenther Sohler
Wed, Aug 30, 2023 7:44 AM

I suspect that the Warning Dialog IS blocking the application. You can
disable IT with --trust-python command line Argument.
Can you also try normal openscad Code If IT Blocks, too with your Compiled
openscad?
Thank you!

Guenther Sohler guenther.sohler@gmail.com schrieb am Mi., 30. Aug. 2023,
09:14:

Great that IT builds
Can you create a test.py with
cube().output()
And start openscad test.py
To See If If Makes a difference?
IT will ask you whether ,you Trust into that File.

Father Horton fatherhorton@gmail.com schrieb am Mi., 30. Aug. 2023,
04:05:

This builds without errors:

git clone https://github.com/gsohler/openscad.git
cd openscad
git checkout python-pr3
git submodule update --init --recursive
sudo ./scripts/uni-get-dependencies.sh
sudo apt install qt5-assistant
./scripts/check-dependencies.sh
mkdir build
cd build
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 ..
make
sudo make install

I started it, went into preferences and enabled python, and restarted it.
It doesn't respond to any inputs and I have to go back to the shell and
kill the process.

On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler <
guenther.sohler@gmail.com> wrote:

Hi father,
Great that you Managed to Install Most of the dependencies. I think,
next step on the list IS something Like creating the build directory and
running cmake. Maybe check again the instructions in my Site ?
Greets from Spain

On Tuesday, August 29, 2023, Father Horton fatherhorton@gmail.com
wrote:

I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble,
so I tried building vanilla OpenSCAD from source, following the directions
here: https://github.com/openscad/openscad/#building-for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that it
expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

--
Null


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

I suspect that the Warning Dialog IS blocking the application. You can disable IT with --trust-python command line Argument. Can you also try normal openscad Code If IT Blocks, too with your Compiled openscad? Thank you! Guenther Sohler <guenther.sohler@gmail.com> schrieb am Mi., 30. Aug. 2023, 09:14: > Great that IT builds > Can you create a test.py with > cube().output() > And start openscad test.py > To See If If Makes a difference? > IT will ask you whether ,you Trust into that File. > > > Father Horton <fatherhorton@gmail.com> schrieb am Mi., 30. Aug. 2023, > 04:05: > >> This builds without errors: >> >> git clone https://github.com/gsohler/openscad.git >> cd openscad >> git checkout python-pr3 >> git submodule update --init --recursive >> sudo ./scripts/uni-get-dependencies.sh >> sudo apt install qt5-assistant >> ./scripts/check-dependencies.sh >> mkdir build >> cd build >> cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 .. >> make >> sudo make install >> >> I started it, went into preferences and enabled python, and restarted it. >> It doesn't respond to any inputs and I have to go back to the shell and >> kill the process. >> >> On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler < >> guenther.sohler@gmail.com> wrote: >> >>> Hi father, >>> Great that you Managed to Install Most of the dependencies. I think, >>> next step on the list IS something Like creating the build directory and >>> running cmake. Maybe check again the instructions in my Site ? >>> Greets from Spain >>> >>> >>> On Tuesday, August 29, 2023, Father Horton <fatherhorton@gmail.com> >>> wrote: >>> >>>> I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, >>>> so I tried building vanilla OpenSCAD from source, following the directions >>>> here: https://github.com/openscad/openscad/#building-for-linuxbsd >>>> >>>> When I do this: >>>> >>>> sudo ./scripts/uni-get-dependencies.sh >>>> >>>> I get: >>>> >>>> Package qt5-default is not available, but is referred to by another >>>> package. >>>> This may mean that the package is missing, has been obsoleted, or >>>> is only available from another source >>>> >>>> E: Package 'qt5-default' has no installation candidate >>>> installed qt5qt-default to enable qmake >>>> >>>> I Googled around and discovered that qt5-default is now called >>>> qt5-assistant. I installed that and cleared the above warning. >>>> >>>> ./scripts/check-dependencies.sh >>>> >>>> runs with no problem. >>>> >>>> qmake >>>> >>>> returns the qmake help message, so it's not finding something that it >>>> expects. >>>> >>>> Thoughts? >>>> >>>> uname -r = 5.15.90.1-microsoft-standard-WSL2 >>>> >>> >>> >>> -- >>> Null >>> _______________________________________________ >>> OpenSCAD mailing list >>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>> >> _______________________________________________ >> OpenSCAD mailing list >> To unsubscribe send an email to discuss-leave@lists.openscad.org >> >
FH
Father Horton
Wed, Aug 30, 2023 12:43 PM

I tried it on a native Linux machine and it works fine, so it's some
complex WSL2 thing.

On Wed, Aug 30, 2023 at 2:45 AM Guenther Sohler guenther.sohler@gmail.com
wrote:

I suspect that the Warning Dialog IS blocking the application. You can
disable IT with --trust-python command line Argument.
Can you also try normal openscad Code If IT Blocks, too with your Compiled
openscad?
Thank you!

Guenther Sohler guenther.sohler@gmail.com schrieb am Mi., 30. Aug.
2023, 09:14:

Great that IT builds
Can you create a test.py with
cube().output()
And start openscad test.py
To See If If Makes a difference?
IT will ask you whether ,you Trust into that File.

Father Horton fatherhorton@gmail.com schrieb am Mi., 30. Aug. 2023,
04:05:

This builds without errors:

git clone https://github.com/gsohler/openscad.git
cd openscad
git checkout python-pr3
git submodule update --init --recursive
sudo ./scripts/uni-get-dependencies.sh
sudo apt install qt5-assistant
./scripts/check-dependencies.sh
mkdir build
cd build
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 ..
make
sudo make install

I started it, went into preferences and enabled python, and restarted
it. It doesn't respond to any inputs and I have to go back to the shell and
kill the process.

On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler <
guenther.sohler@gmail.com> wrote:

Hi father,
Great that you Managed to Install Most of the dependencies. I think,
next step on the list IS something Like creating the build directory and
running cmake. Maybe check again the instructions in my Site ?
Greets from Spain

On Tuesday, August 29, 2023, Father Horton fatherhorton@gmail.com
wrote:

I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble,
so I tried building vanilla OpenSCAD from source, following the directions
here: https://github.com/openscad/openscad/#building-for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that it
expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

--
Null


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

I tried it on a native Linux machine and it works fine, so it's some complex WSL2 thing. On Wed, Aug 30, 2023 at 2:45 AM Guenther Sohler <guenther.sohler@gmail.com> wrote: > I suspect that the Warning Dialog IS blocking the application. You can > disable IT with --trust-python command line Argument. > Can you also try normal openscad Code If IT Blocks, too with your Compiled > openscad? > Thank you! > > Guenther Sohler <guenther.sohler@gmail.com> schrieb am Mi., 30. Aug. > 2023, 09:14: > >> Great that IT builds >> Can you create a test.py with >> cube().output() >> And start openscad test.py >> To See If If Makes a difference? >> IT will ask you whether ,you Trust into that File. >> >> >> Father Horton <fatherhorton@gmail.com> schrieb am Mi., 30. Aug. 2023, >> 04:05: >> >>> This builds without errors: >>> >>> git clone https://github.com/gsohler/openscad.git >>> cd openscad >>> git checkout python-pr3 >>> git submodule update --init --recursive >>> sudo ./scripts/uni-get-dependencies.sh >>> sudo apt install qt5-assistant >>> ./scripts/check-dependencies.sh >>> mkdir build >>> cd build >>> cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 .. >>> make >>> sudo make install >>> >>> I started it, went into preferences and enabled python, and restarted >>> it. It doesn't respond to any inputs and I have to go back to the shell and >>> kill the process. >>> >>> On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler < >>> guenther.sohler@gmail.com> wrote: >>> >>>> Hi father, >>>> Great that you Managed to Install Most of the dependencies. I think, >>>> next step on the list IS something Like creating the build directory and >>>> running cmake. Maybe check again the instructions in my Site ? >>>> Greets from Spain >>>> >>>> >>>> On Tuesday, August 29, 2023, Father Horton <fatherhorton@gmail.com> >>>> wrote: >>>> >>>>> I tried to build Guenther's Pythonized OpenSCAD, but ran into trouble, >>>>> so I tried building vanilla OpenSCAD from source, following the directions >>>>> here: https://github.com/openscad/openscad/#building-for-linuxbsd >>>>> >>>>> When I do this: >>>>> >>>>> sudo ./scripts/uni-get-dependencies.sh >>>>> >>>>> I get: >>>>> >>>>> Package qt5-default is not available, but is referred to by another >>>>> package. >>>>> This may mean that the package is missing, has been obsoleted, or >>>>> is only available from another source >>>>> >>>>> E: Package 'qt5-default' has no installation candidate >>>>> installed qt5qt-default to enable qmake >>>>> >>>>> I Googled around and discovered that qt5-default is now called >>>>> qt5-assistant. I installed that and cleared the above warning. >>>>> >>>>> ./scripts/check-dependencies.sh >>>>> >>>>> runs with no problem. >>>>> >>>>> qmake >>>>> >>>>> returns the qmake help message, so it's not finding something that it >>>>> expects. >>>>> >>>>> Thoughts? >>>>> >>>>> uname -r = 5.15.90.1-microsoft-standard-WSL2 >>>>> >>>> >>>> >>>> -- >>>> Null >>>> _______________________________________________ >>>> OpenSCAD mailing list >>>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>>> >>> _______________________________________________ >>> OpenSCAD mailing list >>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>> >> _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
GS
Guenther Sohler
Wed, Aug 30, 2023 2:18 PM

Hi father, so openscad did some Python in your place?
Are there any additional hints for New Users for compiling ?
What IS wsl2?

On Wednesday, August 30, 2023, Father Horton fatherhorton@gmail.com wrote:

I tried it on a native Linux machine and it works fine, so it's some
complex WSL2 thing.

On Wed, Aug 30, 2023 at 2:45 AM Guenther Sohler guenther.sohler@gmail.com
wrote:

I suspect that the Warning Dialog IS blocking the application. You can
disable IT with --trust-python command line Argument.
Can you also try normal openscad Code If IT Blocks, too with your
Compiled openscad?
Thank you!

Guenther Sohler guenther.sohler@gmail.com schrieb am Mi., 30. Aug.
2023, 09:14:

Great that IT builds
Can you create a test.py with
cube().output()
And start openscad test.py
To See If If Makes a difference?
IT will ask you whether ,you Trust into that File.

Father Horton fatherhorton@gmail.com schrieb am Mi., 30. Aug. 2023,
04:05:

This builds without errors:

git clone https://github.com/gsohler/openscad.git
cd openscad
git checkout python-pr3
git submodule update --init --recursive
sudo ./scripts/uni-get-dependencies.sh
sudo apt install qt5-assistant
./scripts/check-dependencies.sh
mkdir build
cd build
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 ..
make
sudo make install

I started it, went into preferences and enabled python, and restarted
it. It doesn't respond to any inputs and I have to go back to the shell and
kill the process.

On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler <
guenther.sohler@gmail.com> wrote:

Hi father,
Great that you Managed to Install Most of the dependencies. I think,
next step on the list IS something Like creating the build directory and
running cmake. Maybe check again the instructions in my Site ?
Greets from Spain

On Tuesday, August 29, 2023, Father Horton fatherhorton@gmail.com
wrote:

I tried to build Guenther's Pythonized OpenSCAD, but ran into
trouble, so I tried building vanilla OpenSCAD from source, following the
directions here: https://github.com/openscad/openscad/#building-
for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that it
expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

--
Null


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

--
Null

Hi father, so openscad did some Python in your place? Are there any additional hints for New Users for compiling ? What IS wsl2? On Wednesday, August 30, 2023, Father Horton <fatherhorton@gmail.com> wrote: > I tried it on a native Linux machine and it works fine, so it's some > complex WSL2 thing. > > On Wed, Aug 30, 2023 at 2:45 AM Guenther Sohler <guenther.sohler@gmail.com> > wrote: > >> I suspect that the Warning Dialog IS blocking the application. You can >> disable IT with --trust-python command line Argument. >> Can you also try normal openscad Code If IT Blocks, too with your >> Compiled openscad? >> Thank you! >> >> Guenther Sohler <guenther.sohler@gmail.com> schrieb am Mi., 30. Aug. >> 2023, 09:14: >> >>> Great that IT builds >>> Can you create a test.py with >>> cube().output() >>> And start openscad test.py >>> To See If If Makes a difference? >>> IT will ask you whether ,you Trust into that File. >>> >>> >>> Father Horton <fatherhorton@gmail.com> schrieb am Mi., 30. Aug. 2023, >>> 04:05: >>> >>>> This builds without errors: >>>> >>>> git clone https://github.com/gsohler/openscad.git >>>> cd openscad >>>> git checkout python-pr3 >>>> git submodule update --init --recursive >>>> sudo ./scripts/uni-get-dependencies.sh >>>> sudo apt install qt5-assistant >>>> ./scripts/check-dependencies.sh >>>> mkdir build >>>> cd build >>>> cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 .. >>>> make >>>> sudo make install >>>> >>>> I started it, went into preferences and enabled python, and restarted >>>> it. It doesn't respond to any inputs and I have to go back to the shell and >>>> kill the process. >>>> >>>> On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler < >>>> guenther.sohler@gmail.com> wrote: >>>> >>>>> Hi father, >>>>> Great that you Managed to Install Most of the dependencies. I think, >>>>> next step on the list IS something Like creating the build directory and >>>>> running cmake. Maybe check again the instructions in my Site ? >>>>> Greets from Spain >>>>> >>>>> >>>>> On Tuesday, August 29, 2023, Father Horton <fatherhorton@gmail.com> >>>>> wrote: >>>>> >>>>>> I tried to build Guenther's Pythonized OpenSCAD, but ran into >>>>>> trouble, so I tried building vanilla OpenSCAD from source, following the >>>>>> directions here: https://github.com/openscad/openscad/#building- >>>>>> for-linuxbsd >>>>>> >>>>>> When I do this: >>>>>> >>>>>> sudo ./scripts/uni-get-dependencies.sh >>>>>> >>>>>> I get: >>>>>> >>>>>> Package qt5-default is not available, but is referred to by another >>>>>> package. >>>>>> This may mean that the package is missing, has been obsoleted, or >>>>>> is only available from another source >>>>>> >>>>>> E: Package 'qt5-default' has no installation candidate >>>>>> installed qt5qt-default to enable qmake >>>>>> >>>>>> I Googled around and discovered that qt5-default is now called >>>>>> qt5-assistant. I installed that and cleared the above warning. >>>>>> >>>>>> ./scripts/check-dependencies.sh >>>>>> >>>>>> runs with no problem. >>>>>> >>>>>> qmake >>>>>> >>>>>> returns the qmake help message, so it's not finding something that it >>>>>> expects. >>>>>> >>>>>> Thoughts? >>>>>> >>>>>> uname -r = 5.15.90.1-microsoft-standard-WSL2 >>>>>> >>>>> >>>>> >>>>> -- >>>>> Null >>>>> _______________________________________________ >>>>> OpenSCAD mailing list >>>>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>>>> >>>> _______________________________________________ >>>> OpenSCAD mailing list >>>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>>> >>> _______________________________________________ >> OpenSCAD mailing list >> To unsubscribe send an email to discuss-leave@lists.openscad.org >> > -- Null
FH
Father Horton
Wed, Aug 30, 2023 3:49 PM

I was able to execute cube().output() and get a cube.

I filed a bug report over the qt5-default issue. Until that gets resolved,
Ubuntu users (and derivatives) will need to install qt5-assistant manually.
I don't know about other distros.

WSL2 = Windows Subsystem for Linux, version 2. It basically gives you a
working Linux system within Windows.

On Wed, Aug 30, 2023 at 9:18 AM Guenther Sohler guenther.sohler@gmail.com
wrote:

Hi father, so openscad did some Python in your place?
Are there any additional hints for New Users for compiling ?
What IS wsl2?

On Wednesday, August 30, 2023, Father Horton fatherhorton@gmail.com
wrote:

I tried it on a native Linux machine and it works fine, so it's some
complex WSL2 thing.

On Wed, Aug 30, 2023 at 2:45 AM Guenther Sohler <
guenther.sohler@gmail.com> wrote:

I suspect that the Warning Dialog IS blocking the application. You can
disable IT with --trust-python command line Argument.
Can you also try normal openscad Code If IT Blocks, too with your
Compiled openscad?
Thank you!

Guenther Sohler guenther.sohler@gmail.com schrieb am Mi., 30. Aug.
2023, 09:14:

Great that IT builds
Can you create a test.py with
cube().output()
And start openscad test.py
To See If If Makes a difference?
IT will ask you whether ,you Trust into that File.

Father Horton fatherhorton@gmail.com schrieb am Mi., 30. Aug. 2023,
04:05:

This builds without errors:

git clone https://github.com/gsohler/openscad.git
cd openscad
git checkout python-pr3
git submodule update --init --recursive
sudo ./scripts/uni-get-dependencies.sh
sudo apt install qt5-assistant
./scripts/check-dependencies.sh
mkdir build
cd build
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 ..
make
sudo make install

I started it, went into preferences and enabled python, and restarted
it. It doesn't respond to any inputs and I have to go back to the shell and
kill the process.

On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler <
guenther.sohler@gmail.com> wrote:

Hi father,
Great that you Managed to Install Most of the dependencies. I think,
next step on the list IS something Like creating the build directory and
running cmake. Maybe check again the instructions in my Site ?
Greets from Spain

On Tuesday, August 29, 2023, Father Horton fatherhorton@gmail.com
wrote:

I tried to build Guenther's Pythonized OpenSCAD, but ran into
trouble, so I tried building vanilla OpenSCAD from source, following the
directions here:
https://github.com/openscad/openscad/#building-for-linuxbsd

When I do this:

sudo ./scripts/uni-get-dependencies.sh

I get:

Package qt5-default is not available, but is referred to by another
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'qt5-default' has no installation candidate
installed qt5qt-default to enable qmake

I Googled around and discovered that qt5-default is now called
qt5-assistant. I installed that and cleared the above warning.

./scripts/check-dependencies.sh

runs with no problem.

qmake

returns the qmake help message, so it's not finding something that
it expects.

Thoughts?

uname -r = 5.15.90.1-microsoft-standard-WSL2

--
Null


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

--
Null


OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org

I was able to execute cube().output() and get a cube. I filed a bug report over the qt5-default issue. Until that gets resolved, Ubuntu users (and derivatives) will need to install qt5-assistant manually. I don't know about other distros. WSL2 = Windows Subsystem for Linux, version 2. It basically gives you a working Linux system within Windows. On Wed, Aug 30, 2023 at 9:18 AM Guenther Sohler <guenther.sohler@gmail.com> wrote: > Hi father, so openscad did some Python in your place? > Are there any additional hints for New Users for compiling ? > What IS wsl2? > > On Wednesday, August 30, 2023, Father Horton <fatherhorton@gmail.com> > wrote: > >> I tried it on a native Linux machine and it works fine, so it's some >> complex WSL2 thing. >> >> On Wed, Aug 30, 2023 at 2:45 AM Guenther Sohler < >> guenther.sohler@gmail.com> wrote: >> >>> I suspect that the Warning Dialog IS blocking the application. You can >>> disable IT with --trust-python command line Argument. >>> Can you also try normal openscad Code If IT Blocks, too with your >>> Compiled openscad? >>> Thank you! >>> >>> Guenther Sohler <guenther.sohler@gmail.com> schrieb am Mi., 30. Aug. >>> 2023, 09:14: >>> >>>> Great that IT builds >>>> Can you create a test.py with >>>> cube().output() >>>> And start openscad test.py >>>> To See If If Makes a difference? >>>> IT will ask you whether ,you Trust into that File. >>>> >>>> >>>> Father Horton <fatherhorton@gmail.com> schrieb am Mi., 30. Aug. 2023, >>>> 04:05: >>>> >>>>> This builds without errors: >>>>> >>>>> git clone https://github.com/gsohler/openscad.git >>>>> cd openscad >>>>> git checkout python-pr3 >>>>> git submodule update --init --recursive >>>>> sudo ./scripts/uni-get-dependencies.sh >>>>> sudo apt install qt5-assistant >>>>> ./scripts/check-dependencies.sh >>>>> mkdir build >>>>> cd build >>>>> cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 .. >>>>> make >>>>> sudo make install >>>>> >>>>> I started it, went into preferences and enabled python, and restarted >>>>> it. It doesn't respond to any inputs and I have to go back to the shell and >>>>> kill the process. >>>>> >>>>> On Tue, Aug 29, 2023 at 2:29 PM Guenther Sohler < >>>>> guenther.sohler@gmail.com> wrote: >>>>> >>>>>> Hi father, >>>>>> Great that you Managed to Install Most of the dependencies. I think, >>>>>> next step on the list IS something Like creating the build directory and >>>>>> running cmake. Maybe check again the instructions in my Site ? >>>>>> Greets from Spain >>>>>> >>>>>> >>>>>> On Tuesday, August 29, 2023, Father Horton <fatherhorton@gmail.com> >>>>>> wrote: >>>>>> >>>>>>> I tried to build Guenther's Pythonized OpenSCAD, but ran into >>>>>>> trouble, so I tried building vanilla OpenSCAD from source, following the >>>>>>> directions here: >>>>>>> https://github.com/openscad/openscad/#building-for-linuxbsd >>>>>>> >>>>>>> When I do this: >>>>>>> >>>>>>> sudo ./scripts/uni-get-dependencies.sh >>>>>>> >>>>>>> I get: >>>>>>> >>>>>>> Package qt5-default is not available, but is referred to by another >>>>>>> package. >>>>>>> This may mean that the package is missing, has been obsoleted, or >>>>>>> is only available from another source >>>>>>> >>>>>>> E: Package 'qt5-default' has no installation candidate >>>>>>> installed qt5qt-default to enable qmake >>>>>>> >>>>>>> I Googled around and discovered that qt5-default is now called >>>>>>> qt5-assistant. I installed that and cleared the above warning. >>>>>>> >>>>>>> ./scripts/check-dependencies.sh >>>>>>> >>>>>>> runs with no problem. >>>>>>> >>>>>>> qmake >>>>>>> >>>>>>> returns the qmake help message, so it's not finding something that >>>>>>> it expects. >>>>>>> >>>>>>> Thoughts? >>>>>>> >>>>>>> uname -r = 5.15.90.1-microsoft-standard-WSL2 >>>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> Null >>>>>> _______________________________________________ >>>>>> OpenSCAD mailing list >>>>>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>>>>> >>>>> _______________________________________________ >>>>> OpenSCAD mailing list >>>>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>>>> >>>> _______________________________________________ >>> OpenSCAD mailing list >>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>> >> > > -- > Null > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >