Linux下安装python的gmpy2库及遇到无法定位软件包的解决办法

£可爱£侵袭症+ 提交于 2020-10-31 04:40:47

gmpy2需要gmp.h &mpfr.h &mpc.h 
安装命令: 
sudo apt-get install libmpfr-dev libmpc-dev 

成功之后再输入安装命令:

pip install gmpy2

 

 

 

若遇到无法定位软件包:

则输入命令:sudo gedit /etc/apt/sources.list

弹出文件,在文件末尾添加:

deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib

若仍无法安装,可尝试其他kali源:

# 163 源
deb http://mirrors.163.com/debian wheezy main non-free contrib
deb-src http://mirrors.163.com/debian wheezy main non-free contrib
deb http://mirrors.163.com/debian wheezy-proposed-updates main non-free contrib
deb-src http://mirrors.163.com/debian wheezy-proposed-updates main non-free contrib
deb-src http://mirrors.163.com/debian-security wheezy/updates main non-free contrib
deb http://mirrors.163.com/debian-security wheezy/updates main non-free contrib

然后  sudo apt-get update  即可

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!