python使用pip安装模块出现ReadTimeoutError: HTTPSConnectionPool

使用pip安装第三库时,有时会报错:

pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

这时可以换成国内源:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple module_name

pip install module_name -i https://pypi.douban.com/simple

第一个安装不行就换第二个试试。

猜你喜欢

转载自blog.csdn.net/Thanours/article/details/101424469