I am not sure if I must ask this in blender stakcexchange or in here. However, the problem is that when I run a custom compiled version of Blender(that wasn't compiled by me), I see this:
./blender: error while loading shared libraries: libjpeg.so.62: cannot open shared object file: No such file or directory
It shows that a library for loading jpeg files is missing. Now I don't have any idea how to fix it? Is it possible to kinda get it manually? I think that the problem is that Ubuntu 15.10 may have upgraded libjpeg to version 7 and deleted version 6.2 files. But that's all I know so far.
sudo apt-get install libjpeg62
– A.B. Dec 29 '15 at 17:58./blender: error while loading shared libraries: libboost_filesystem.so.1.55.0: cannot open shared object file: No such file or directory
– Adrians Netlis Dec 29 '15 at 19:32ldd ./blender
to see a list of all necessary and unsatisfied shared library dependencies (ldd
is in the packagelibc-bin
). – David Foerster Dec 29 '15 at 21:05