【Python】用pip安装python库下载超时的解决办法
File "C:\Users\Administrator\Miniconda3\lib\site-packages\pip\_vendor\urllib3\response.py", line 307, in _error_catcher raise ReadTimeoutError(self._pool, None, 'Read timed out.')pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.源地址不
稳定,下载速率慢,可以通过修改源地址解决。
方法一
直接在命令行中指定源地址,如下:
pip install -i https://pypi.doubanio.com/simple/ 包名
或者:
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名
以上两个源地址的下载速度都很快。
建一个 ~/.pip/pip.conf文件,添加内容如下
-
[]
-
index-url = http: //b.pypi.python.org/simple
-
[]
-
use-mirrors = true
-
mirrors = http: //b.pypi.python.org