Win10安装PyInstaller遇到Bug“Read timed out”解决方法

Win10环境下PyCharm安装PyInstaller过程中遇到Bug:pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
然后在cmd中尝试安装,依然遇到一堆Bug如下:
Win10安装PyInstaller遇到Bug“Read timed out”解决方法_第1张图片最终参考这篇博文,找到解决方案:参考
出现ReadTimeOutError是由于网速的问题,最终通过如下命令,安装成功:

pip --default-timeout=1000 install -U PyInstaller==3.3 

这里指定PyInstaller版本为3.3,目前最新版为3.6.
Win10安装PyInstaller遇到Bug“Read timed out”解决方法_第2张图片
记录下来以备忘。

你可能感兴趣的:(编程语言,AI)