0

我有 PyCrypto 2.6 版,我从更新日志中读到 PyCrypto 2.4 或更高版本支持 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
4

2 回答 2

1

我在 Ubuntu 13.04 上的 python3.3 上遇到了类似的 pycrypto 问题。

安装python3.3-dev包解决了这个问题。

根据您的发行版尝试安装 python3.2-dev 或类似的。

于 2013-11-04T18:41:44.820 回答
0

我通过以下步骤解决了这个问题:

  1. 。/配置
  2. python setup.py 构建
  3. python setup.py 安装

希望对你有帮助 !对我来说很好

于 2015-02-11T21:49:36.590 回答