ubuntu16.10安装numpy, scipy, matplotlib

前端之家收集整理的这篇文章主要介绍了ubuntu16.10安装numpy, scipy, matplotlib前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在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

原文链接:https://www.f2er.com/ubuntu/352892.html

猜你在找的Ubuntu相关文章