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