1. 程式人生 > >使用pip install lib時報錯time out

使用pip install lib時報錯time out

可以試試
pip install opencv-python==3.2.0.6 -i https://pypi.douban.com/simple

使用國內映象下載python庫的方法:

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

–index後面也可以換成別的映象,比如http://mirrors.sohu.com/python/

http://mirrors.aliyun.com/pypi/simple
http://pypi.douban.com/  豆瓣

http://pypi.hustunique.com
/ 華中理工大學 http://pypi.sdutlinux.org/ 山東理工大學 http://pypi.mirrors.ustc.edu.cn/ 中國科學技術大學

報錯的關鍵字最後為:

pip._vendor.requests.packages.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out.

解決方法,設定超時時間:

pip --default-timeout=100 install -U Pillow