linux下安装numpy,pandas,scipy,matplotlib,scikit-learn

Posted afangxin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下安装numpy,pandas,scipy,matplotlib,scikit-learn相关的知识,希望对你有一定的参考价值。

python在数据科学方面需要用到的库:

a。Numpy:科学计算库。提供矩阵运算的库。

b。Pandas:数据分析处理库

c。scipy:数值计算库。提供数值积分和常微分方程组求解算法。提供了一个非常广泛的特定函数集合。

d。Matplotlib:数据可视化库

e。Scikit-learn:机器学习库

 

安装顺序如下:

1.pip install numpy
2.pip install pandas

3.pip install scipy

(sudo apt-get install libatlas-base-dev gfortran //这一步是后面安装scipy所必需的.     备注:这个我没有先安装,直接就安装scipy)
4.pip install matplotlib

(安装matplotlib之前首先安装libpng。下载地址:http://pan.baidu.com/s/1o80C5Jk,解压进入该文件夹,输入python install setup.py。
安装freetype,下载地址:http://pan.baidu.com/s/1dE5yvbr,解压进入该文件夹,输入python install setup.py。

对于freetype.tar.bz2的包,先进行安装再解压,命令:yum install bzip2,bunzip2 freetype-2.6.3.tar.bz2,tar -xvf freetype-2.6.3.tar)

 5.pip install -U scikit-learn

 

建议用pip进行安装。也可以用yum安装,apt-get安装。但是pip安装的包一般都比较新,所以建议用pip进行安装。

 

 

 

其实numpy,pandas,scipy,matplotlib可以直接下载一个anaconda就可以了。

具体可以看http://python.jobbole.com/86236/

 




以上是关于linux下安装numpy,pandas,scipy,matplotlib,scikit-learn的主要内容,如果未能解决你的问题,请参考以下文章

转载python安装numpy和pandas

ubantu下安装pip,python,pycharm,numpy,scipy,matplotlibm,pandas 以及sklearn

在python2.7.6中怎么安装numpy scipymatplotlib pandas等模块

在Windows上安装SCIP for Python不再适用

Ubuntu16.04下安装配置numpy,scipy,matplotlibm,pandas 以及sklearn+深度学习tensorflow配置(非Anaconda环境)

Windows下Python安装numpy+mkl,Scipy和statsmodels