Python3.x:pip命令安装第三方库,超时处理方案
问题:
pip install splinter命令安装第三方库,报超时错误:
raise ReadTimeoutError(self._pool, None, 'Read timed out.') pip._vendor.requests.packages.urllib3.exceptions.ReadTimeoutError: HTTPSConnecti onPool(host='pypi.python.org', port=443): Read timed out.
解决方案:
设置超时时间:
pip --default-timeout=1000 install splinter
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/16796.html