我有PyCrypto 2.6版本,我从更改日志中了解到2.4或更高版本的PyCrypto支持Python 3。我尝试使用
安装它 # python3 setup.py install
但是它给了我这个错误
running install
running build
running build_py
running build_ext
running build_configure
warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath.
building 'Crypto.Hash._MD2' extension
gcc -pthread -fwrapv -Wall -Wstrict-prototypes -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/python3.2mu -c src/MD2.c -o build/temp.linux-x86_64-3.2/src/MD2.o
src/MD2.c:31:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
我在Ubuntu 13.04的python3.3上遇到了类似的问题。
安装python3.3-dev
包解决问题。
尝试安装python3.2-dev或类似的取决于你的发行版。
我通过以下步骤解决了这个问题:
- ./configure python setup.py buildpython setup.py install
希望这对你有帮助!