Hi, i'm trying to install SFML for python.
I downloaded full python SDK from the website and follow the "how to install" about PySFML. Everything's fine, no error with the build and install command but when i wanna launch a script (a samples for example), i get this :
Traceback (most recent call last):
File "test_py.py", line 2, in <module>
from PySFML import sf
ImportError: libsfml-graphics.so.1.6: cannot open shared object file: No such file or directory
I took a look in the setup.py file and i saw this line :
library_dirs=['../lib/mingw']
...
why a mingw repository? It doesn't exist and so, i change this line by :
library_dirs=['/usr/local/lib'']
(my libsfml-graphics.so.1.6 is located in this path)
I do the installation process again (build + install) but i get the same.
Thanks for your help.