我试图在cryptosystem
操作系统上创建raspbian
。选择python和pycrypto,因为操作系统预装了python 3.2.3。将“pycrypto-2.6.1.tar.gz
”移动到python文件所在的文件夹并在那里提取。使用命令“python setup.py build
”进行构建,然后安装。
但在构建阶段,不断收到错误:
"pi@raspberrypi /usr/lib/python3.2/pycrypto-2.6.1 $ python setup.py buildrunning 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 -fno-strict-aliasing -fwrapv -Wall -Wstrict-prototypes -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/python2.7 -c src/MD2.c -o build/temp.linux-armv6l-2.7/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
"
无法弄清楚我是否应该改变路径。有人可以对此有所了解吗?
答案 0 :(得分:0)
警告:未找到GMP或MPIR库;没有构建Crypto.PublicKey._fastmath。
libgmp-dev
包提供了必要的文件来支持在此构建优化模块:
apt-get install libgmp-dev
src / MD2.c:31:20:致命错误:Python.h:没有这样的文件或目录 编译终止。
如果您搜索fatal error: Python.h: No such file or directory
,Google第一个结果就是this StackOverflow问题,该问题告诉您需要安装python-dev
软件包:
apt-get install python-dev
通常,如果您从源代码构建软件,则需要相应的-dev
软件包以用于任何所需的库;这些包提供了头文件(foo.h
)和链接所需的无版本共享库。