pip 出现Read Time out的解决方法

在pip install XXX的时候,如果出现Read Time out Error: HTTPSConnectionPool(host='pypi.python.org', port=443)的话,表明网络连接到python官方库过慢,解决的方法是换一个网站下载。

pip install PyMysql    变成   

pip  install --index https://pypi.mirrors.ustc.edu.cn/simple PyMysql

PS:

--index后面也可以换成别的镜像。

找到了一些国内可用的镜像网站如下:

Python官方 https://pypi.python.org/simple

阿里云 http://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

douban  http://pypi.douban.com/simple

v2ex http://pypi.v2ex.com/simple

中国科学院 http://pypi.mirrors.opencas.cn/simple/

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

你可能感兴趣的:(python-初始配置)