20.04.2020, 20:45
(20.04.2020, 17:04)Selur Wrote: Sadly
doesn't seem to work for me.nano /etc/profile.d/vapoursynth.sh
libvapoursynth-script.so.0 is located at '/usr/local/lib/libvapoursynth-script.so.0'
properly shows:cat /etc/profile.d/vapoursynth.sh
but after a rebootexport LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
export PYTHONPATH=/usr/local/lib/python3.6/site-packages:$PYTHONPATH
return nothingecho $LD_LIBRARY_PATH
and to no surprise:
returns:vspipe
calling:vspipe: error while loading shared libraries: libvapoursynth-script.so.0: cannot open shared object file: No such file or directory
and vspipe works as it should.export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
vspipe
-> need to figure out how to properly set the LD_LIBRARY_PATH.
funny thing is:
properly returnsecho $PYTHONPATH
/usr/local/lib/python3.6/site-packages
Cu Selur
Ps.: same effect when I add the LD_LIBRARY_PATH to /etc/environment :/
Interesting that currently
echo $LD_LIBRARY_PATH
/usr/local/lib
echo $PYTHONPATH
/usr/local/lib/python3.6/site-packages
/etc/profile.d/vapoursynth.sh
export LD_LIBRARY_PATH=/usr/local/lib
export PYTHONPATH=/usr/local/lib/python3.6/site-packages
OK, now I go to follow your next proposals. Will let you know.