红联Linux门户
Linux帮助

Python:Ubuntu安装numpy,scipy,matplotlib

发布时间:2015-09-18 22:08:28来源:linux网站作者:ShomyLiu

之前在windows 下安装过 那几个科学计算的包,由于C++编译器的问题,花了好长时间。这次在Linux下几个命令就可以了。差别好大。

一开始直接使用pip 安装 numpy 结果失败了,后来查了一些资料,总结了一下。


安装python-dev

安装这个包,以后安装各种python扩展包,可以省很多事情。

sudo apt-get install python-dev


使用apt-get 安装

只需要下面的几个命令即可,亲测可用。

sudo apt-get install python-numpy
sudo apt-get install python-scipy
sudo apt-get install python-matplotlib


使用pip 安装

之前使用pip 安装失败, 查过原因之后,是因为缺少了编译所需的库,可以先用apt-get 来安装所需库。

sudo apt-get build-dep python-numpy
sudo apt-get build-dep python-scipy

之后在使用 pip 应该可以(未测试)

sudo pip install numpy
sudo pip install scipy


综上:建议使用apt-get.


Ubuntu 14.04 64bit安装IPython:http://www.linuxdiyf.com/linux/13981.html

CentOS 6.5安装IPython3.0:http://www.linuxdiyf.com/linux/10337.html

IPython与Python的区别:http://www.linuxdiyf.com/linux/8992.html

CentOS6.5安装Python2.7.8以及安装iPython:http://www.linuxdiyf.com/linux/7002.html

在Uubuntu 14.04 64bit上搭建NumPy函数库环境:http://www.linuxdiyf.com/linux/13985.html