您的位置:首页 > 编程语言 > Python开发

ubuntu16.10安装numpy, scipy, matplotlib

2017-05-23 21:13 519 查看
在Python3.x中安装numpy

sudo apt-get install python3-pip
pip3 install numpy


在Python3.x中安装scipy

如果采用

pip3 install scipy


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

sudo apt-get install libblas-dev
sudo apt-get install liblapack-dev
sudo apt-get install gfortran
sudo apt-get install python3-scipy


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

pip3 install matplotlib


参考:

http://blog.csdn.net/xiangcheng001/article/details/53994870
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息