pip安裝selenium報錯:Read timed out

我是冰霜發表於2017-09-23

今天打算把selenium降級重新安裝,發現安裝時總是失敗,報如下錯誤:

raise ReadTimeoutError(self._pool, None, 'Read timed out.')
pip._vendor.requests.packages.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='pypi.py
thon.org', port=443): Read timed out.

原因是超時了,解決方法:安裝時指定超時時間

pip --default-timeout=100 install -U selenium==2.53.6

 參考部落格:http://www.cnblogs.com/xiaoduc-org/p/5958973.html

相關文章