So, I followed the instructions from here:
http://sfml-dev.org/tutorials/1.6/start-python.phpI have copy and pasted the SDK to the /usr/lib/python2.7 directory but I am still getting:
>>> from PySFML import sf
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named PySFML
And I cannot build the SDK either:
lloyd@lloyd
-d530
-linux
/usr
/lib
/python2.7
/python $ python setup.
py build
running build
running build_py
running build_ext
building
'PySFML.sf' extension
gcc
-pthread
-fno
-strict
-aliasing
-DNDEBUG
-g
-fwrapv
-O2
-Wall
-Wstrict
-prototypes
-fPIC
-I..
/include
-I
/usr
/include
/python2.7
-c src
/Clock.
cpp -o build
/temp.
linux-x86_64
-2.7/src
/Clock.
ogcc
: error trying to exec
'cc1plus': execvp
: No such file or directory
error
: command
'gcc' failed with
exit status
1 What am I doing wrong?
Thanks