Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cython Install GCC error

Tags:

Trying to install Cython on a small VPS running Ubuntu Server. Did

sudo apt-get install gcc

and then

python setup.py install

In the Cython directory, but I get this peculiar error.

running install
running build
running build_py
running build_ext
building 'Cython.Plex.Scanners' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c Cython/Plex/Scanners.c -o build/temp.linux-x86_64-2.6/Cython/Plex/Scanners.o
Cython/Plex/Scanners.c:4:20: error: Python.h: No such file or directory
Cython/Plex/Scanners.c:6:6: error: #error Python headers needed to compile C extensions, please install development version of Python.
error: command 'gcc' failed with exit status 1

Why should I need a 'development version of Python'? Running Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41). Thanks!

like image 307
DizzyDoo Avatar asked Dec 15 '10 12:12

DizzyDoo


2 Answers

You need the developer version of Python - i.e. the Python header files (Python.h)

sudo apt-get install python-dev
like image 100
user225312 Avatar answered Sep 21 '22 15:09

user225312


You need the headers included in the development version of Python, i.e. python.h. It should be packaged in Ubuntu as python-dev.

like image 27
asthasr Avatar answered Sep 18 '22 15:09

asthasr