20

尝试在运行 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)。谢谢!

4

2 回答 2

37

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

sudo apt-get install python-dev
于 2010-12-15T13:08:36.187 回答
4

您需要 Python 开发版本中包含的头文件,即python.h. 它应该在 Ubuntu 中打包为python-dev.

于 2010-12-15T13:09:04.567 回答