模塊安裝失敗

安裝模塊時總是失敗,失敗原因如下:

raise ReadTimeoutError(self._pool, None, ‘Read timed out.’)
pip._vendor.urllib3.exceptions.ReadTimeoutError:
HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read
timed out.

此時可以使用國內鏡像源,就不會超時導致連接不上。
國內源:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple module_name

或者

pip install -i https://pypi.douban.com/simple module_name

兩個都可以試試。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章