在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
参考: