美文网首页我爱编程
ubuntu下pandas的安装

ubuntu下pandas的安装

作者: mtl6906 | 来源:发表于2018-04-26 21:45 被阅读0次

由于pandas比较大有20多M,用国外的源会特别慢
所以要输入如下的命令安装

sudo pip install -i  https://pypi.mirrors.ustc.edu.cn/simple pandas

但是输入后你会发现安装报错了,
这多半是依赖没有满足。
依次输入

sudo pip install -i  https://pypi.mirrors.ustc.edu.cn/simple pytz
sudo pip install -i  https://pypi.mirrors.ustc.edu.cn/simple python-dateutil

安装完毕后,再输入第一条命令安装pandas就成功了。

相关文章

网友评论

    本文标题:ubuntu下pandas的安装

    本文链接:https://www.haomeiwen.com/subject/kufvlftx.html