尝试在运行Ubuntu Server的小型VPS上安装Cython。确实
sudo apt-get install gcc
然后
python setup.py install
在Cython目录中,但我得到了这个特殊的错误。
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
为什么我需要'Python的开发版'?运行Python 2.6.5(r265:79063,2010年4月16日,13:57:41)。谢谢!
答案 0 :(得分:37)
您需要Python的开发人员版本 - 即Python头文件(Python.h)
sudo apt-get install python-dev
答案 1 :(得分:4)
您需要Python开发版中包含的标头,即python.h
。它应该以{{1}}的形式打包在Ubuntu中。