千家信息网

Centos安装各种数据分析库,numpy,pandas,matplotlib,seaborn,scipy

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,环境centos:6.5安装numpy pandas matplotlib seaborn scipy首先安装这些包的一些依赖不然用pip安装不了这些yum -y install blas blas-
千家信息网最后更新 2025年01月19日Centos安装各种数据分析库,numpy,pandas,matplotlib,seaborn,scipy

环境centos:6.5


安装

numpy pandas matplotlib seaborn scipy


首先安装这些包的一些依赖不然用pip安装不了这些

yum -y install blas blas-devel lapack-devel lapackyum -y install seaborn scipyyum -y install freetype freetype-devel libpng libpng-devel


然后用豆瓣的pypi源要比官方的快很多

pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.compip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.compip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.compip install seaborn scipy


0