Issue is with the way its unzipped. Some file managers might have handy right click unzip archive option but that might fail to recreate links when its extracted.
Unziping archive with works:
unzip "SDFModeler - Linux.zip"
AonoZan
Recent community posts
When I download current OpenImage release v2.3.2 I get this error:
./SDFModeler: error while loading shared libraries: libOpenImageDenoise.so.1: cannot open shared object file: No such file or directory
If I create symlink "libOpenImageDenoise.so.1" to latest library "libOpenImageDenoise.so.2.3.2" I get this error:
./SDFModeler: symbol lookup error: ./SDFModeler: undefined symbol: oidnSetFilter1b
Its likely latest library is not compatible with application
Version v1.4.3 works fine. There is no need to remake symlinks they work when extracted.
Okay so I had trouble running this on Debian. Some of the lib files are not exported as links. Im not sure how you can create installation work but I had to do following commands to get it work:
cd /lib
rm -f libOpenImageDenoise.so libOpenImageDenoise.so.1
ln -sf libOpenImageDenoise.so.1.4.3 libOpenImageDenoise.so
ln -sf libOpenImageDenoise.so.1.4.3 libOpenImageDenoise.so1
rm -f libtbb.so libtbb.so.12
ln -sf libtbb.so.12.5 libtbb.so
ln -sf libtbb.so.12.5 libtbb.so.12
This navigates to the lib folder, removes broken files and creates new links.