有些时候我们在选择的海外云服务器的时候用python程序用pip安装软件确实比较慢,这个主要是海外服务器的源是海外的。我们需要更换成国内的源可以提高速度,这个和我们服务器镜像软件源更换是一个道理。
我们可以选择国内的几个主要源。
清华大学源:https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣源 :http://pypi.douban.com/simple/
腾讯源:http://mirrors.cloud.tencent.com/pypi/simple
阿里源:https://mirrors.aliyun.com/pypi/simple/
如果需要用到临时更换源的方法。
我们以安装 Python 的 markdown 模块为例,通常的方式是直接在命令行运行。
pip install markdown
这样直接从国外源下载的,这里我们可以直接用国内源。
pip install markdown -i https://pypi.tuna.tsinghua.edu.cn/simple
这样就可以直接指向用的是python清华大学源。这个只是临时方法。
最好的方法是用永久方法。
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/
本文出处:老蒋部落 » 记录Python更改pip源为国内源的方法 可选python清华大学源和腾讯源 | 欢迎分享( 公众号:老蒋朋友圈 )