可能重复:
PyCrypto and GMP library not found error [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-dev工具。
答案 0 :(得分:42)
您缺少Python开发库。 (试试apt-get install python-dev
。)
但是,除非您有正当理由自行编译pycrypto,否则只需通过(我认为)apt-get install python-crypto
安装即可。