Win10环境下PyCharm安装PyInstaller过程中遇到Bug:pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
然后在cmd中尝试安装,依然遇到一堆Bug如下:
最终参考这篇博文,找到解决方案:参考
出现ReadTimeOutError是由于网速的问题,最终通过如下命令,安装成功:
pip --default-timeout=1000 install -U PyInstaller==3.3
这里指定PyInstaller版本为3.3,目前最新版为3.6.
记录下来以备忘。