ubuntu16.10安装numpy, scipy, matplotlib

来源:互联网 发布:淘宝评论为垃圾评论 编辑:程序博客网 时间:2024/05/21 11:28

在Python3.x中安装numpy

sudo apt-get install python3-pippip3 install numpy

在Python3.x中安装scipy
如果采用

pip3 install scipy

安装不成功,则采用如下方法

sudo apt-get install libblas-devsudo apt-get install liblapack-devsudo apt-get install gfortransudo apt-get install python3-scipy

而安装matplotlib,则发现又可以直接采用pip3进行安装

pip3 install matplotlib

参考:

http://blog.csdn.net/xiangcheng001/article/details/53994870

原创粉丝点击