Cython安装GCC错误

Diz*_*Doo 20 python gcc install cython

尝试在运行Ubuntu Server的小型VPS上安装Cython.难道

sudo apt-get install gcc
Run Code Online (Sandbox Code Playgroud)

然后

python setup.py install
Run Code Online (Sandbox Code Playgroud)

在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
Run Code Online (Sandbox Code Playgroud)

我为什么需要'Python的开发版'?运行Python 2.6.5(r265:79063,2010年4月16日,13:57:41).谢谢!

use*_*312 37

您需要Python的开发人员版本 - 即Python头文件(Python.h)

sudo apt-get install python-dev
Run Code Online (Sandbox Code Playgroud)

  • 标准Windows分发包括头文件.在某些linux上,默认安装没有(因为distibutors认为省略它们很有趣,例如stdlib(tkinter)的部分内容:/). (3认同)