解决pip install的时候报错timed out的问题
程序员文章站
2022-05-14 15:26:04
安装包的时候报错,执行:pip install pyinstaller
问题:
File "c:\python\python35\lib\site-packag...
安装包的时候报错,执行:pip install pyinstaller
问题:
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.
解决:
修改超时时间:
pip --default-timeout=1000 install -U pip
指定安装源进行安装:
pip install pyinstaller -i https://pypi.doubanio.com/simple
以上这篇解决pip install的时候报错timed out的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
解决pip install的时候报错timed out的问题
-
完美解决Python 2.7不能正常使用pip install的问题
-
网卡提示 Request timed out 的问题分析及解决方法
-
解决Win10安装Anaconda,pip install tensorlow,使用Jupyter出现ImportError: No module named 'tensorflow'的问题
-
解决pip install 卡住不动的问题
-
解决pip install xxx报错SyntaxError: invalid syntax的问题
-
使用cmd运行mysql数据库的时候,报错:"不是内部命令也不是可有运行的程序"问题的解决办法
-
pycharm 2020.2.4 pip install Flask 报错 Error:Non-zero exit code的问题
-
pip install matplotlib报错,出现:Microsoft Visual C++ 14.0 is required 的解决方案