Open ErunamoJAZZ opened 11 years ago
pySFML expects them to be in your dynamic linker path. If you have them installed elsewhere and it can't find them, /usr/local/lib
is not in your LD_LIBRARY_PATH
, and thus your dynamic linker can't find the libraries. Add /usr/local/lib
to your LD_LIBRARY_PATH
environment variable to fix this - pySFML is not at fault here.
Hello.
The pySFML-cython in Linux (in my Debian Wheezy 64bits) expects to find SFML2 libraries in
/usr/lib
, but for example, when installing SFML2 from source (cmake -> make -> sudo make install) are installed in/usr/local/lib
, and pySFML not found, showing an error like this:This is solved by creating a symbolic link in
/usr/lib
, but it would be better to find them pySFML also in/usr/local/lib
.