Célio Conort
Visitor
|
Errors during install on Debian systems ? - 2006/05/05 14:13
Having an error like this :
| Code: |
error: invalid Python installation: unable to open /usr/lib/python2.XXX/config/Makefile (No such file or directory)
|
On some Linux systems, notably Debian-based systems, you'll need to have the Python2.XXX-dev package installed in order to be able to compile C extensions.
so running
| Code: |
# apt-get install python2.XXX-dev
|
should solve this problem
Have fun !
|