linux环境下安装python第三方模块

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

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

b.Pandas: 数据分析处理库

c.scipy:数值计算库

d.Matplotlib: 数据可实话库

e.Scikit-learn: 机器学习库

模块安装

       pip install 模块名

  easy_install 模块名

  如果pip安装慢的话,用阿里云的源吧

  pip install 模块名 -i  http://mirrors.aliyun.com/pypi/simple  --trusted-host mirrors.aliyun.com

pip install scipy

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

pip install -U scikit-learn

也可以使用apt-get安装,pip安装的比较新。

你可能感兴趣的:(linux环境下安装python第三方模块)