python使用pip安装模块出现ReadTimeoutError: HTTPSConnectionPool的解决方法
2021-01-21 18:15
标签:tps pypi outer org class 安装 out ror 应该 今天使用pip安装第三库时,有时会报错: pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443): Read timed out. 使用镜像:pip install [模块名] -i https://pypi.douban.com/simple,比如:pip install virtualenv -i https://pypi.douban.com/simple 换成国内源: 或 第一个安装不行就换第二个试试。 其实用anaconda安装就比较快,不会出现这个问题 下面是其它网友的补充 一般情况下PIP出现ReadTimeoutError都是因为被GFW给墙了,所以一般遇到这种问题,我们可以选择国内的镜像来解决问题。 在Windows下: C:\Users\Administrator\下新建pip文件夹,在创建pip.ini文件,拷贝下面代码进去,保存。其实就是把python的源换成了清华源,应该能解决问题。 延长等待时间完美解决问题 windows下在cmd中,linux在终端下输入如下命令: --- python使用pip安装模块出现ReadTimeoutError: HTTPSConnectionPool的解决方法 标签:tps pypi outer org class 安装 out ror 应该 原文地址:https://www.cnblogs.com/xy-ouyang/p/12894218.htmlpip install -i https://pypi.tuna.tsinghua.edu.cn/simple module_name
pip install -i https://pypi.douban.com/simple module_name
conda install module_name
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
pip --default-timeout=100 install -U pip
文章标题:python使用pip安装模块出现ReadTimeoutError: HTTPSConnectionPool的解决方法
文章链接:http://soscw.com/index.php/essay/45087.html