pip 安装库失败问题:Retrying (Retry(total=4, connect=None, read=None, redirect=None, status =None)),原因及解决办法

简介: pip 安装库失败问题:Retrying (Retry(total=4, connect=None, read=None, redirect=None, status =None)),原因及解决办法

   

本想用安装一个 requests 库,发现安装报错了。看报错日志感觉是连接它的 pypi 库下载官网有问题,使用默认的 pip 库下载地址安装本来就很慢。

我就试了试,改了个阿里云的镜像地址,然后就好了,速度也变快了。

pip安装python库秒速下载:更改pip数据源。阿里云国外镜像。

报错信息:

C:\Users\Administrator>pip install requests
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status
=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.con
nection.VerifiedHTTPSConnection object at 0x0354AE90>: Failed to establish a new
 connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。',)': /simple/re
quests/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status
=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.con
nection.VerifiedHTTPSConnection object at 0x03563D70>: Failed to establish a new
 connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。',)': /simple/re
quests/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status
=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.con
nection.VerifiedHTTPSConnection object at 0x03563F30>: Failed to establish a new
 connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。',)': /simple/re
quests/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status
=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.con
nection.VerifiedHTTPSConnection object at 0x03563A30>: Failed to establish a new
 connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。',)': /simple/re
quests/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status
=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.con
nection.VerifiedHTTPSConnection object at 0x03563950>: Failed to establish a new
 connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。',)': /simple/re
quests/
ERROR: Could not find a version that satisfies the requirement requests (from ve
rsions: none)
ERROR: No matching distribution found for requests

改完镜像后的效果图:

C:\Users\Administrator>pip install requests
Looking in indexes: https://mirrors.aliyun.com/pypi/simple/
Collecting requests
  Downloading https://mirrors.aliyun.com/pypi/packages/51/bd/23c926cd341ea6b7dd0
b2a00aba99ae0f828be89d72b2190f27c11d4b7fb/requests-2.22.0-py2.py3-none-any.whl (
57kB)
     |█████████████████               | 30kB 2.0MB/s eta 0:00:0
     |██████████████████████▌         | 40kB 2.7MB/s eta
     |████████████████████████████    | 51kB 3.4MB/s
     |████████████████████████████████| 61kB 4.1
MB/s
Collecting certifi>=2017.4.17
  Downloading https://mirrors.aliyun.com/pypi/packages/b9/63/df50cac98ea0d5b006c
55a399c3bf1db9da7b5a24de7890bc9cfd5dd9e99/certifi-2019.11.28-py2.py3-none-any.wh
l (156kB)
     |█████████████████               | 81kB 5.5MB/s eta 0:00:0
     |███████████████████             | 92kB 6.1MB/s eta 0:00
     |█████████████████████           | 102kB 6.8MB/s eta 0
     |███████████████████████         | 112kB 6.8MB/s eta
     |█████████████████████████       | 122kB 6.8MB/s e
     |███████████████████████████     | 133kB 6.8MB/s
     |█████████████████████████████▌  | 143kB 6.8M
     |███████████████████████████████▌| 153kB 6.
     |████████████████████████████████| 163kB 6.
8MB/s
Collecting chardet<3.1.0,>=3.0.2
  Downloading https://mirrors.aliyun.com/pypi/packages/bc/a9/01ffebfb562e4274b64
87b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl (13
3kB)
     |████████████████████████▌       | 102kB 6.8MB/s e
     |███████████████████████████     | 112kB 6.8MB/s
     |█████████████████████████████▌  | 122kB 6.8M
     |████████████████████████████████| 133kB 6.
     |████████████████████████████████| 143kB 6.
8MB/s
Collecting idna<2.9,>=2.5
  Downloading https://mirrors.aliyun.com/pypi/packages/14/2c/cd551d81dbe15200be1
cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl (58kB)
     |████████████████████████████████| 61kB ...
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in d:\pyt
hon\lib\site-packages (from requests) (1.25.3)
Installing collected packages: certifi, chardet, idna, requests
Successfully installed certifi-2019.11.28 chardet-3.0.4 idna-2.8 requests-2.22.0

喜欢的点个赞❤吧!


目录
相关文章
|
1月前
|
Python
pip批量安装Python库 requirement.txt 离线环境无互联网环境下pip安装Python库
pip批量安装Python库 requirement.txt 离线环境无互联网环境下pip安装Python库
113 3
|
1月前
|
自然语言处理 搜索推荐 程序员
【Python】如何使用pip,安装第三方库和生成二维码、操作Excel
【Python】如何使用pip,安装第三方库和生成二维码、操作Excel
45 0
|
2月前
|
机器学习/深度学习 Linux 开发者
Python必备工具:pip的安装与管理
Python必备工具:pip的安装与管理
127 0
|
2月前
|
Python
python一键导出/导入pip库
python一键导出/导入pip库
87 0
|
3月前
pip安装iterstrat.ml_stratifiers import MultilabelStratifiedKFold, MultilabelStratifiedShuffleSplit
文章介绍了如何使用iterative-stratification库进行多标签多分类的K折交叉验证,包括安装方法和示例代码。
56 1
|
4月前
|
Web App开发 测试技术 Shell
确保您已经安装了Selenium和ChromeDriver。您可以使用pip来安装Selenium:
确保您已经安装了Selenium和ChromeDriver。您可以使用pip来安装Selenium:
|
4月前
|
SQL Python
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
|
3月前
|
存储 Linux 网络安全
常用的 Python 工具:使用 virtualenv、使用 Pip 进行安装和管理包
常用的 Python 工具:使用 virtualenv、使用 Pip 进行安装和管理包
38 0
|
3月前
|
Python
Python——pip安装weditor失败
Python——pip安装weditor失败
52 0
|
4月前
|
Python
确保你已经安装了`dronekit`库。如果没有,你可以使用pip来安装:
确保你已经安装了`dronekit`库。如果没有,你可以使用pip来安装:

热门文章

最新文章