使用pip镜像,解决pip安装软件速度慢的问题

在默认情况下,使用pip安装python模块速度超级慢。我们可以通过使用镜像源的方法,加快pip安装python模块的速度,以下是具体的教程。

临时使用

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple XXX

注意,simple 不能少, 是 https 而不是 http

设为默认

升级 pip 到最新的版本 (>=10.0.0) 后进行配置:

pip install pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

如果您到 pip 默认源的网络连接较差,临时使用清华大学镜像站来升级 pip:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U

再推荐几个可用的pip源

目前可用(Sun 23 Feb 15:02:18 CST 2020 测试):
http://pypi.douban.com/ 豆瓣
http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学
http://mirrors.aliyun.com/pypi/simple/ 阿里云
https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学

原创文章,转载请注明: 转载自科技爱好者博客

本文链接地址: 使用pip镜像,解决pip安装软件速度慢的问题 (https://www.tujing.site/3903)

如果博客对您有帮助,请给我 赞助


热度:1,202℃

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注