gmpy安装使用方法
Posted pcat
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gmpy安装使用方法相关的知识,希望对你有一定的参考价值。
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
以上是关于gmpy安装使用方法的主要内容,如果未能解决你的问题,请参考以下文章
python gmpy 使用 MS Visual C++ Compiler Package for Python 2.7 安装错误