I'm trying to run a Python3 code found on GitHub on a remote machine that I don't have root access. The code requires to import glfw
dependency .
While pip3 install --user glfw
seems to work perfectly fine (exactly like all the other python dependencies), when I try to run the code I get:
Traceback (most recent call last): File "", line 1, in File "/home/ismarou/.local/lib/python3.5/site-packages/glfw/init.py", line 34, in raise ImportError("Failed to load GLFW3 shared library.") ImportError: Failed to load GLFW3 shared library.
Is there anything I missed?
PYGLFW_LIBRARY
and exported the variable to the path:set -x PYGLFW_LIBRARY /usr/lib/i386-linux-gnu/libglfw.so
(in fish shell). It works. – Engrain