python pycrypto安装错误

发布于 2024-12-11 09:43:06 字数 865 浏览 0 评论 0原文

可能的重复:
PyCrypto 和 GMP 库未找到错误 [ Mac 操作系统 10.6.3]

我尝试在 ubuntu 上安装 pycrypto,但它抛出错误“

hom@PC71:~/Desktop/pycrypto-2.3$ sudo python setup.py build
running build
running build_py
running build_ext
warning: GMP library not found; Not building Crypto.PublicKey._fastmath.
building 'Crypto.Hash.MD2' extension
gcc -pthread -fno-strict-aliasing -fwrapv -Wall -Wstrict-prototypes -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/python2.6 -c src/MD2.c -o build/temp.linux-i686-2.6/src/MD2.o
src/MD2.c:31: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1

我已经安装了 python-dev 工具”。

Possible Duplicate:
PyCrypto and GMP library not found error [Mac OS 10.6.3]

I'm trying to install pycrypto on ubuntu, but it throws error

hom@PC71:~/Desktop/pycrypto-2.3$ sudo python setup.py build
running build
running build_py
running build_ext
warning: GMP library not found; Not building Crypto.PublicKey._fastmath.
building 'Crypto.Hash.MD2' extension
gcc -pthread -fno-strict-aliasing -fwrapv -Wall -Wstrict-prototypes -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/python2.6 -c src/MD2.c -o build/temp.linux-i686-2.6/src/MD2.o
src/MD2.c:31: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1

I have installed python-dev tools already.

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

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

发布评论

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

评论(1

南烟 2024-12-18 09:43:06

您缺少 Python 开发库。 (尝试 apt-get install python-dev 。)

但是,除非您有充分的理由自己编译 pycrypto,否则只需通过(我认为) apt-get install python-crypto 安装它/代码>。

You are missing the Python development libraries. (Try apt-get install python-dev.)

However, unless you have a valid reason to compile pycrypto yourself, just install it via (I think) apt-get install python-crypto.

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