我在尝试安装python软件包时遇到此错误:
错误:由于环境错误而无法安装软件包: HTTPSConnectionPool(host ='files.pythonhosted.org',port = 443):最大值 网址重试次数超过: /packages/f2/12/37c09c37d7ac2bdb6169d5b9409a8e64770a997412edcccc689115d63b97/catboost-0.16-cp36-none-manylinux1_x86_64.whl (由 ReadTimeoutError(“ HTTPSConnectionPool(host ='files.pythonhosted.org', port = 443):读取超时。 (读取超时= 15)“,))
答案 0 :(得分:0)
我有同样的错误,因为我使用的是python3,所以当我将pip更改为pip3 install时,该错误已得到解决
pip install <package>
确保它是
pip3 install <package>