前言
Python默认的pip包来源是国外的Pypi服务站点:https://pypi.python.org/simple。
对于国内用户来说,由于网络原因,下载速度太慢了,严重影响我们拔刀速度。
目前,比较常用的pip镜像站点有:
1)清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
2)中科大:https://mirrors.ustc.edu.cn/pypi/web/simple/
3)豆瓣:http://pypi.doubanio.com/simple/
4)阿里云:http://mirrors.aliyun.com/pypi/simple/
修改配置文件
目前,在windows系统上使用python安装包安装时,都会自带安装pip软件,此时可以通过下述方式修改pip的配置文件。
首先在 C:\Users\×××目录中创建名为pip的文件夹(×××为用户名),然后在里面创建名为 pip.ini 的文件,最后在该文件中添加以下内容,保存即可。
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple
timeout = 6000
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn
disable-pip-version-check = true
说明:请注意,该方式不适合于linux系统和MacOS。
网友评论