您好,登录后才能下订单哦!
本篇内容介绍了“python中如何安装numpy和pandas”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
linux首先安装依赖包
yum -y install blas blas-devel lapack-devel lapack yum -y install seaborn scipy yum -y install freetype freetype-devel libpng libpng-devel yum -y install python-pip yum -y install pytz yum -y install python-dateutil
1、 pip方式安装
如果有外网一般推荐使用pip安装,linux下和windows下均可使用pip安装
python -m pip install --upgrade pip pip install --user numpy scipy matplotlib jupyter pandas sympy nose
但很快就会发现这些源安装超级慢,所以我推荐大家使用豆瓣的源
pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com pip install seaborn scipy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
2、如果服务器上没有外网使用不了pip,则需要使用源码安装。推荐大家在豆瓣pypi下载,速度更快 https://pypi.doubanio.com/simple/?allow_list_dir=1
python numpy安装包下载地址是 https://pypi.python.org/pypi/numpy/,pandas的安装包下载地址是 https://pypi.python.org/pypi/pandas,github地址是 https://github.com/pandas-dev
tar -xzf numpy-1.11.2.tar.gz cd numpy-1.11.2 python setup.py build # 编译几分钟 python setup.py install
如提示缺少 setuptools 则从https://pypi.python.org/pypi/setuptools下载 setuptools安装。
安装pandas会提示 ImportError: Building pandas requires cython则需要安装Cython或者升级Cython先,下载链接 https://pypi.python.org/pypi/Cython/ 。windows下pip安装如下
pip install Cython
linux下可使用yum安装或者pip安装
yum install -y Cython.x86_64
如果需要更新到最新版本的Cython则下载源码后安装
cd Cython-0.25.1 python setup.py build python setup.py install
然后是按照pandas
cd pandas-0.19.0 python setup.py build # 比较久 python setup.py install
“python中如何安装numpy和pandas”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。