脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 解决pip install的时候报错timed out的问题

解决pip install的时候报错timed out的问题

2021-03-04 00:15狂奔的蜗牛cn Python

今天小编就为大家分享一篇解决pip install的时候报错timed out的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

安装包的时候报错,执行:pip install pyinstaller

问题:

?
1
2
3
4
5
6
7
8
9
File "c:\python\python35\lib\site-packages\pip\_vendor\requests\packages\urllib3\response.py", line 357, in stream
 data = self.read(amt=amt, decode_content=decode_content)
File "c:\python\python35\lib\site-packages\pip\_vendor\requests\packages\urllib3\response.py", line 324, in read
 flush_decoder = True
File "c:\python\python35\lib\contextlib.py", line 77, in __exit__
 self.gen.throw(type, value, traceback)
File "c:\python\python35\lib\site-packages\pip\_vendor\requests\packages\urllib3\response.py", line 237, in _error_catcher
 raise ReadTimeoutError(self._pool, None, 'Read timed out.')
p._vendor.requests.packages.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out.

解决:

修改超时时间:

?
1
pip --default-timeout=1000 install -U pip

指定安装源进行安装:

?
1
pip install pyinstaller -i https://pypi.doubanio.com/simple

以上这篇解决pip install的时候报错timed out的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/jeff_/article/details/71025674

延伸 · 阅读

精彩推荐