标签:window get err redhat direct sim error win32 tps
gmpy是一种C编码的Python扩展模块,提供对GMP(或MPIR)多精度算术库的访问。
gmpy 1.17是1.x系列的最终版本,没有进一步的更新计划。所有进一步的开发都在2.x系列(也称为gmpy2)中进行。
-------
0x01 windows上安装gmpy
访问https://www.lfd.uci.edu/~gohlke/pythonlibs/#gmpy
里面的gmpy?1.17?cp27?none?win32.whl、gmpy?1.17?cp27?none?win_amd64.whl分别代表32位和64位版本,择一个下载,用pip install安装即可。
0x02 linux安装gmpy
安装
pip install gmpy==1.17
如果下载过慢,可以尝试
pip install gmpy==1.17 -i http://pypi.douban.com/simple/
0x03 安装报错
Err1:
src/gmpy.c:237:20: error: Python.h: No such file or directory
ubuntu、debian里:
apt-get install python-dev -y
centos、redhat里:
yum install python-devel -y
Err2:
src/gmpy.h:30:17: fatal error: gmp.h: No such file or directory
ubuntu、debian里:
apt-get install libgmp-dev -y
centos、redhat里:
yum install gmp-devel -y
标签:window get err redhat direct sim error win32 tps
原文地址:https://www.cnblogs.com/pcat/p/11633170.html