ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443): Read timed out 解决方法

问题描述

使用Pycharm install插件时,会出现因为访问三方仓库超时的情况,错误如下:
ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out.


原因分析:

访问三方库超时


解决方案:

1、增加访问超时时间,在Pycharm Setting中设置 Connection timeout,将该值增大,如下图所示:

ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443): Read timed out 解决方法_第1张图片

2、配置访问速度快的国内的镜像仓库
这是三个镜像地址
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/

你可能感兴趣的:(python,python,pycharm)