python-pycrypto安装错误



可能重复:
PyCrypto和GMP库未找到错误[Mac OS 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开发工具。

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

但是,除非您有正当理由自己编译pycrypto,否则只需通过(我认为(apt-get install python-crypto安装即可。

相关内容

  • 没有找到相关文章

最新更新