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

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

上官瑾文 2018-07-26 14:57:34 浏览45376

场景

在用Dockerfile制作镜像的时候总是出现如下错误

原因分析

在下载python库的时候,由于国内网络原因,python包的下载速度非常慢,查看pip 文档,只要在 pip的时候控制超时即可, 具体参数为 --default-timeout=100, 后面的时间可以自己指定。

解决

pip install --default-timeout=1000 --no-cache-dir -r requirements.txt

版权声明:本文内容由互联网用户自发贡献,版权归作者所有,本社区不拥有所有权,也不承担相关法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件至:[email protected] 进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容。

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

原文地址:https://www.cnblogs.com/chargeworld/p/12258012.html

时间: 2024-10-09 20:27:20

错误:pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.的相关文章

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

用pip安装tornado库: python -m pip install tornado 出现问题一: Could not fetch URL https://pypi.org/simple/twisted/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/twis

python pip install 报:HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.错误

下午想要安装 scrapy框架时报错,如图: 网上查了一下:因为网络差导致安装超时,所以用安装时指定源的方法可以解决: pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple 红色的字体表示要安装的模块 python pip install 报:HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.错误 原文地址:https:/

解决python爬虫requests.exceptions.SSLError: HTTPSConnectionPool(host='XXX', port=443)问题

爬虫时报错如下: requests.exceptions.SSLError: HTTPSConnectionPool(host='某某某网站', port=443): Max retries exceeded with url: /login/ (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify fail

Ubuntu18.04 virutalenv报错:pip._vendor.requests.exceptions.InvalidSchema: Missing dependencies for SOCKS support.

使用virtualenv创建不同环境时,始终大面积报错,其中最重要的一行是: pip._vendor.requests.exceptions.InvalidSchema: Missing dependencies for SOCKS support. 大概报错如下: 其实很简单,虽然我有梯子,但是没有配置在terminal中配置好,只要设置为自己的代理即可: export all_proxy="https://127.0.0.1:1080/" 原文地址:https://www.cnbl

$ ssh -T [email protected] ssh: connect to host ssh.github.com port 22: Connection timed out

在C:/用户/用户名/.ssh中添加几个文件 之前的电脑生成都是四个文件,分别是 id_rsa  id_rsa.pub  config known_hosts 不知道为什么在另一台电脑上却生成两个文件  id_rsa  id_rsa.pub 原来这两个文件也能使用,只不过最近在研究git,发现clone失败,SSH key不能连接. 无奈只能添加两个文件如下: config Host github.com User git Hostname ssh.github.com PreferredAut

【pip install error 】之ReadTimeoutError: HTTPSConnectionPool

常用pip来更新Python的package,经常出现揪心的红色错误信息 ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out. 主要问题:默认的源不稳定导致 解决方案:切换稳定可靠的源 (清华的镜像站)传送门:https://mirrors.tuna.tsinghua.edu.cn/ 以pandas库为例:pip install --index https://mirror

pip install Error - ReadTimeoutError: HTTPSConnectionPool

pip install Error OSX 终端更新pip出错 sudo pip install --upgrade pip : 1.ReadTimeoutError: HTTPSConnectionPool(host='pypi.Python.org', port=443): Read 解决办法: 加大超时时间,如 pip --default-timeout=100 install -U pip 2.如果依上处理还没解决问题,或者报错 ProtocolError: ("Connection b

python使用requests时报错requests.exceptions.SSLError: HTTPSConnectionPool

requests.exceptions.SSLError: HTTPSConnectionPool(host='www.baidu.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, u'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)'),)) 错误提示就是上面这样的.首先我找了很多的资料,

requests.exceptions.SSLError: HTTPSConnectionPool报错解决方案

运行脚本报错: Traceback (most recent call last): File "F:/Interface_Study/study_requests/auto_get_post.py", line 24, in <module> res = Calendar_Query().request_main(url,'get',data) File "F:/Interface_Study/study_requests/auto_get_post.py&qu