1. 程式人生 > >pip 出現Read Time out的解決方法

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/