zoukankan      html  css  js  c++  java
  • Linux下安装python的gmpy2库及遇到无法定位软件包的解决办法

    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  即可

  • 相关阅读:
    各种
    shell
    搭建个人信息平台
    基本tomcat+nginx
    vi编辑的使用
    linux权限管理
    Java观察者模式
    Flume+Kafka+Sparkstreaming日志分析
    科学计算与数学建模
    推荐系统起手式-几种简单推荐模型(基于内容的推荐)
  • 原文地址:https://www.cnblogs.com/yang12318/p/9418354.html
Copyright © 2011-2022 走看看