How are you meant to install pysfml2-cython? On the documentation you have instructions for building the module, not installing. So I had to guess my way and I can't get it to work.
I am on windows 7 and downloaded the source. Then I tried to build the module by "python.exe setup.py built_ext" and I had sfml 2.0 installed from before. Then in the compile process it couldn't find SFML/graphics.h etc. So I had to edit the setup.py file and add a -IC:\program files (x86)\SFML\include to get it to compile. Then it didn't find the lib files when linking and I had to copy the sfml lib files to python27/libs. and _then_ it compiled.
But the problem when running was this:
Traceback (most recent call last):
File "C:\projects\ponkt\mejn.py", line 3, in <module>
import sfml as sf
ImportError: DLL load failed: The specified module could not be found.
and I opened the .pyd file in dependency walker and I could see that it didn't find sfml-graphics-2.dll etc. And I tried everything from copying them to the folder from where I ran the python application, into system32, changing PYTHONPATH etc etc and nothing seems to work and I am getting a bit frustrated.
So I came here to ask if someone has a solution to this problem.
thanks in advance.