Cython安装GCC错误

发布于 2024-10-08 09:19:00 字数 858 浏览 5 评论 0原文

尝试在运行 Ubuntu 服务器的小型 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)。谢谢!

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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抠脚大汉 2024-10-15 09:19:00

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

sudo apt-get install python-dev

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

sudo apt-get install python-dev
留蓝 2024-10-15 09:19:00

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文