Question:
python安裝第三方庫超時報錯—–Read time out
Answer:
①使用國內(nèi)鏡像安裝
②設(shè)置超時時間
第一種方法:
pipy 國內(nèi)鏡像目前有:
http://pypi.hustunique.com/ 華中理工大學(xué)
http://pypi.sdutlinux.org/ 山東理工大學(xué)
http://pypi.mirrors.ustc.edu.cn/ 中國科學(xué)技術(shù)大學(xué)
手動指定源:
在 pip 后面跟-i 來指定源憨降,比如用豆瓣的源來安裝 whois庫:
pip install whois -i http://pypi.douban.com/simple
注意后面要有 /simple 目錄2├谩@亍肢础!
配置文件 :
若需要創(chuàng)建或修改配置文件( linux 的文件在~/.pip/pip.conf , windows 在%HOMEPATH%\pip\pip.ini )死陆,修改內(nèi)容為:
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
如果不加后面的 install
則需要每次在命令后面加上 –trusted-host
第二種方法:
安裝whois庫:
pip –default-timeout=100 install -U whois
轉(zhuǎn)自:https://blog.csdn.net/weixin_34722995/article/details/71751837