discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

need some help reinstall openscad

MH
Matthieu Hendriks
Sat, Sep 16, 2023 5:58 AM

This week my snap/openscad installation broke.

After removing snap/openscd and so on I tried to reinstall openscad on
Ubuntu, with no luck. I've

  1. apt install openscad op

  2. snap install openscad

  3. docker

Result: openscad: error while loading shared libraries:
libboost_filesystem.so.1.71.0: cannot open shared object file: No such
file or directory
Google doesn't come with an answer. :(

I know it's probably not a real openscad issue, but I'm stuck and any
help would be appreciated.

Greetings Matthieu


This week my snap/openscad installation broke. After removing snap/openscd and so on I tried to reinstall openscad on Ubuntu, with no luck. I've 1. apt install openscad op 2. snap install openscad 3. docker Result: openscad: error while loading shared libraries: libboost_filesystem.so.1.71.0: cannot open shared object file: No such file or directory Google doesn't come with an answer. :( I know it's probably not a real openscad issue, but I'm stuck and any help would be appreciated. Greetings Matthieu -------------------------
TP
Torsten Paul
Sat, Sep 16, 2023 5:31 PM

On 16.09.23 07:58, Matthieu Hendriks wrote:

This week my snap/openscad installation broke.

Which OpenSCAD did you use, the one shipped included in Ubuntu?
What Ubuntu version is it?

  1. apt install openscad op

Check with apt-cache policy and see where the package is coming
from. Maybe it's some additional package source causing the issue.

  1. snap install openscad

This not working is surprising as the application is packaged
completely inside a container so there should not be some random
stuff missing. Did you try running specifically with:

/snap/bin/openscad

  1. docker

I would not recommend that unless you have special needs,
plain docker installation of GUI programs is not impossible
but it does need some deeper understanding of what's going
on behind the curtains.

Result: openscad: error while loading shared libraries:
libboost_filesystem.so.1.71.0: cannot open shared object file: No such file or directory

Try:

"which openscad" to show where the binary is coming from

Run:

"ldd /usr/bin/openscad" using the path from the previous step
and see what it shows reagarding "libboost*" files.

ciao,
Torsten.

On 16.09.23 07:58, Matthieu Hendriks wrote: > This week my snap/openscad installation broke. Which OpenSCAD did you use, the one shipped included in Ubuntu? What Ubuntu version is it? > 1. apt install openscad op Check with apt-cache policy and see where the package is coming from. Maybe it's some additional package source causing the issue. > 2. snap install openscad This not working is surprising as the application is packaged completely inside a container so there should not be some random stuff missing. Did you try running specifically with: /snap/bin/openscad > 3. docker I would not recommend that unless you have special needs, plain docker installation of GUI programs is not impossible but it does need some deeper understanding of what's going on behind the curtains. > Result: openscad: error while loading shared libraries: > libboost_filesystem.so.1.71.0: cannot open shared object file: No such file or directory Try: "which openscad" to show where the binary is coming from Run: "ldd /usr/bin/openscad" using the path from the previous step and see what it shows reagarding "libboost*" files. ciao, Torsten.
L
larry
Sat, Sep 16, 2023 6:43 PM

On Sat, 2023-09-16 at 07:58 +0200, Matthieu Hendriks wrote:

This week my snap/openscad installation broke. 
After removing snap/openscd and so on I tried to reinstall openscad
on Ubuntu, with no luck. I've 

  1. apt install openscad op
  2. snap install openscad 
  3. docker 

I am not a fan of snap, so I can't help with that part.
I am running a development snapshot in an Appimage, on Ubuntu MATE, and
have no problems with it.

You can get it on https://openscad.org/downloads.html#snapshots

I put it in my ~/bin directory where I keep Appimages and script files.

Result: openscad: error while loading shared libraries:
libboost_filesystem.so.1.71.0: cannot open shared object file: No
such file or directory
Google doesn't come with an answer. :(
 
I know it's probably not a real openscad issue, but I'm stuck and any
help would be appreciated.
 
Greetings Matthieu
 


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

On Sat, 2023-09-16 at 07:58 +0200, Matthieu Hendriks wrote: > This week my snap/openscad installation broke.  > After removing snap/openscd and so on I tried to reinstall openscad > on Ubuntu, with no luck. I've  > 1. apt install openscad op > 2. snap install openscad  > 3. docker  I am not a fan of snap, so I can't help with that part. I am running a development snapshot in an Appimage, on Ubuntu MATE, and have no problems with it. You can get it on https://openscad.org/downloads.html#snapshots I put it in my ~/bin directory where I keep Appimages and script files. > Result: openscad: error while loading shared libraries: > libboost_filesystem.so.1.71.0: cannot open shared object file: No > such file or directory > Google doesn't come with an answer. :( >   > I know it's probably not a real openscad issue, but I'm stuck and any > help would be appreciated. >   > Greetings Matthieu >   > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org
MH
Matthieu Hendriks
Sat, Sep 16, 2023 7:43 PM

I'm using Ubuntu 22.04.3 LTS.

I finally downloaded the source code, did a complete compile and
install, without any options/special settings, and it was running.
Than I saw the appimage on the dowload, After that I downloaded the
"appimage" this one also worked fine.

So I gave up on the apt install, the snap install and the docker
install. :)

I expected the compiled version to be faster than the appimage one. But
the appimage one is with the preview significant faster than with the
local compiled one.

Any clues about this?

Thanks for helping out.


Torsten Paul schreef op 2023-09-16 19:31:

On 16.09.23 07:58, Matthieu Hendriks wrote:

This week my snap/openscad installation broke.

Which OpenSCAD did you use, the one shipped included in Ubuntu?
What Ubuntu version is it?

  1. apt install openscad op

Check with apt-cache policy and see where the package is coming
from. Maybe it's some additional package source causing the issue.

  1. snap install openscad

This not working is surprising as the application is packaged
completely inside a container so there should not be some random
stuff missing. Did you try running specifically with:

/snap/bin/openscad

  1. docker

I would not recommend that unless you have special needs,
plain docker installation of GUI programs is not impossible
but it does need some deeper understanding of what's going
on behind the curtains.

Result: openscad: error while loading shared libraries:
libboost_filesystem.so.1.71.0: cannot open shared object file: No such
file or directory

Try:

"which openscad" to show where the binary is coming from

Run:

"ldd /usr/bin/openscad" using the path from the previous step
and see what it shows reagarding "libboost*" files.

ciao,
Torsten.


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

I'm using Ubuntu 22.04.3 LTS. I finally downloaded the source code, did a complete compile and install, without any options/special settings, and it was running. Than I saw the appimage on the dowload, After that I downloaded the "appimage" this one also worked fine. So I gave up on the apt install, the snap install and the docker install. :) I expected the compiled version to be faster than the appimage one. But the appimage one is with the preview significant faster than with the local compiled one. Any clues about this? Thanks for helping out. ------------------------- Torsten Paul schreef op 2023-09-16 19:31: > On 16.09.23 07:58, Matthieu Hendriks wrote: > >> This week my snap/openscad installation broke. > > Which OpenSCAD did you use, the one shipped included in Ubuntu? > What Ubuntu version is it? > >> 1. apt install openscad op > > Check with apt-cache policy and see where the package is coming > from. Maybe it's some additional package source causing the issue. > >> 2. snap install openscad > > This not working is surprising as the application is packaged > completely inside a container so there should not be some random > stuff missing. Did you try running specifically with: > > /snap/bin/openscad > >> 3. docker > > I would not recommend that unless you have special needs, > plain docker installation of GUI programs is not impossible > but it does need some deeper understanding of what's going > on behind the curtains. > >> Result: openscad: error while loading shared libraries: >> libboost_filesystem.so.1.71.0: cannot open shared object file: No such >> file or directory > > Try: > > "which openscad" to show where the binary is coming from > > Run: > > "ldd /usr/bin/openscad" using the path from the previous step > and see what it shows reagarding "libboost*" files. > > ciao, > Torsten. > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org
HL
Hans L
Sat, Sep 16, 2023 8:46 PM

If you did not specify CMAKE_BUILD_TYPE=Release then it was likely built
with no compiler optimizations.

On Sat, Sep 16, 2023 at 2:44 PM Matthieu Hendriks mhendriks@digirent.nl
wrote:

I'm using Ubuntu 22.04.3 LTS.

I finally downloaded the source code, did a complete compile and install,
without any options/special settings, and it was running.
Than I saw the appimage on the dowload, After that I downloaded the
"appimage" this one also worked fine.

So I gave up on the apt install, the snap install and the docker install.
:)

I expected the compiled version to be faster than the appimage one. But
the appimage one is with the preview significant faster than with the local
compiled one.

Any clues about this?

Thanks for helping out.


Torsten Paul schreef op 2023-09-16 19:31:

On 16.09.23 07:58, Matthieu Hendriks wrote:

This week my snap/openscad installation broke.

Which OpenSCAD did you use, the one shipped included in Ubuntu?
What Ubuntu version is it?

  1. apt install openscad op

Check with apt-cache policy and see where the package is coming
from. Maybe it's some additional package source causing the issue.

  1. snap install openscad

This not working is surprising as the application is packaged
completely inside a container so there should not be some random
stuff missing. Did you try running specifically with:

/snap/bin/openscad

  1. docker

I would not recommend that unless you have special needs,
plain docker installation of GUI programs is not impossible
but it does need some deeper understanding of what's going
on behind the curtains.

Result: openscad: error while loading shared libraries:

libboost_filesystem.so.1.71.0: cannot open shared object file: No such file or directory

Try:

"which openscad" to show where the binary is coming from

Run:

"ldd /usr/bin/openscad" using the path from the previous step
and see what it shows reagarding "libboost*" files.

ciao,
Torsten.


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

If you did not specify CMAKE_BUILD_TYPE=Release then it was likely built with no compiler optimizations. On Sat, Sep 16, 2023 at 2:44 PM Matthieu Hendriks <mhendriks@digirent.nl> wrote: > I'm using Ubuntu 22.04.3 LTS. > > I finally downloaded the source code, did a complete compile and install, > without any options/special settings, and it was running. > Than I saw the appimage on the dowload, After that I downloaded the > "appimage" this one also worked fine. > > So I gave up on the apt install, the snap install and the docker install. > :) > > I expected the compiled version to be faster than the appimage one. But > the appimage one is with the preview significant faster than with the local > compiled one. > > Any clues about this? > > Thanks for helping out. > > ------------------------------ > > > Torsten Paul schreef op 2023-09-16 19:31: > > On 16.09.23 07:58, Matthieu Hendriks wrote: > > This week my snap/openscad installation broke. > > > Which OpenSCAD did you use, the one shipped included in Ubuntu? > What Ubuntu version is it? > > 1. apt install openscad op > > > Check with apt-cache policy and see where the package is coming > from. Maybe it's some additional package source causing the issue. > > 2. snap install openscad > > > This not working is surprising as the application is packaged > completely inside a container so there should not be some random > stuff missing. Did you try running specifically with: > > /snap/bin/openscad > > 3. docker > > > I would not recommend that unless you have special needs, > plain docker installation of GUI programs is not impossible > but it does need some deeper understanding of what's going > on behind the curtains. > > Result: openscad: error while loading shared libraries: > > libboost_filesystem.so.1.71.0: cannot open shared object file: No such file or directory > > > Try: > > "which openscad" to show where the binary is coming from > > Run: > > "ldd /usr/bin/openscad" using the path from the previous step > and see what it shows reagarding "libboost*" files. > > ciao, > Torsten. > _______________________________________________ > 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 >
MH
Matthieu Hendriks
Sun, Sep 17, 2023 5:19 AM

Yes that did  it.

cmake -DCMAKE_BUILD_TYPE=Release

Thanks for the help.


Hans L schreef op 2023-09-16 22:46:

If you did not specify CMAKE_BUILD_TYPE=Release then it was likely
built with no compiler optimizations.

On Sat, Sep 16, 2023 at 2:44 PM Matthieu Hendriks
mhendriks@digirent.nl wrote:

I'm using Ubuntu 22.04.3 LTS.

I finally downloaded the source code, did a complete compile and
install, without any options/special settings, and it was running.
Than I saw the appimage on the dowload, After that I downloaded the
"appimage" this one also worked fine.

So I gave up on the apt install, the snap install and the docker
install. :)

I expected the compiled version to be faster than the appimage one. But
the appimage one is with the preview significant faster than with the
local compiled one.

Any clues about this?

Thanks for helping out.


Torsten Paul schreef op 2023-09-16 19:31:
On 16.09.23 07:58, Matthieu Hendriks wrote: This week my snap/openscad
installation broke.
Which OpenSCAD did you use, the one shipped included in Ubuntu?
What Ubuntu version is it?

  1. apt install openscad op
    Check with apt-cache policy and see where the package is coming
    from. Maybe it's some additional package source causing the issue.

  2. snap install openscad
    This not working is surprising as the application is packaged
    completely inside a container so there should not be some random
    stuff missing. Did you try running specifically with:

/snap/bin/openscad

  1. docker
    I would not recommend that unless you have special needs,
    plain docker installation of GUI programs is not impossible
    but it does need some deeper understanding of what's going
    on behind the curtains.

Result: openscad: error while loading shared libraries:
libboost_filesystem.so.1.71.0: cannot open shared object file: No such
file or directory
Try:

"which openscad" to show where the binary is coming from

Run:

"ldd /usr/bin/openscad" using the path from the previous step
and see what it shows reagarding "libboost*" files.

ciao,
Torsten.


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

Yes that did it. cmake -DCMAKE_BUILD_TYPE=Release Thanks for the help. ------------------------- Hans L schreef op 2023-09-16 22:46: > If you did not specify CMAKE_BUILD_TYPE=Release then it was likely > built with no compiler optimizations. > > On Sat, Sep 16, 2023 at 2:44 PM Matthieu Hendriks > <mhendriks@digirent.nl> wrote: > > I'm using Ubuntu 22.04.3 LTS. > > I finally downloaded the source code, did a complete compile and > install, without any options/special settings, and it was running. > Than I saw the appimage on the dowload, After that I downloaded the > "appimage" this one also worked fine. > > So I gave up on the apt install, the snap install and the docker > install. :) > > I expected the compiled version to be faster than the appimage one. But > the appimage one is with the preview significant faster than with the > local compiled one. > > Any clues about this? > > Thanks for helping out. > > ------------------------- > > Torsten Paul schreef op 2023-09-16 19:31: > On 16.09.23 07:58, Matthieu Hendriks wrote: This week my snap/openscad > installation broke. > Which OpenSCAD did you use, the one shipped included in Ubuntu? > What Ubuntu version is it? > > 1. apt install openscad op > Check with apt-cache policy and see where the package is coming > from. Maybe it's some additional package source causing the issue. > > 2. snap install openscad > This not working is surprising as the application is packaged > completely inside a container so there should not be some random > stuff missing. Did you try running specifically with: > > /snap/bin/openscad > > 3. docker > I would not recommend that unless you have special needs, > plain docker installation of GUI programs is not impossible > but it does need some deeper understanding of what's going > on behind the curtains. > > Result: openscad: error while loading shared libraries: > libboost_filesystem.so.1.71.0: cannot open shared object file: No such > file or directory > Try: > > "which openscad" to show where the binary is coming from > > Run: > > "ldd /usr/bin/openscad" using the path from the previous step > and see what it shows reagarding "libboost*" files. > > ciao, > Torsten. > _______________________________________________ > 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