Centos 下安装 python2-urllib3 失败

来源:互联网 发布:java list map 编辑:程序博客网 时间:2024/06/05 16:17

Centos 下安装 python2-urllib3 失败

[root@node1 ~]# yum install python2-urllib3Loaded plugins: fastestmirror, prioritiesLoading mirror speeds from cached hostfile * base: mirrors.aliyun.com * epel: mirrors.ustc.edu.cn * extras: mirrors.cn99.com * updates: mirrors.aliyun.com25 packages excluded due to repository priority protectionsResolving Dependencies--> Running transaction check---> Package python2-urllib3.noarch 0:1.16-1.el7 will be installed--> Finished Dependency ResolutionDependencies Resolved=============================================================================================================================================================================================== Package                                          Arch                                    Version                                       Repository                                        Size===============================================================================================================================================================================================Installing: python2-urllib3                                  noarch                                  1.16-1.el7                                    openstack-ocata                                  126 kTransaction Summary===============================================================================================================================================================================================Install  1 PackageTotal download size: 126 kInstalled size: 455 kIs this ok [y/d/N]: yDownloading packages:python2-urllib3-1.16-1.el7.noa FAILED                                          http://mirror.centos.org/centos/7/cloud/x86_64/openstack-ocata/common/python2-urllib3-1.16-1.el7.noarch.rpm: [Errno 14] curl#7 - "Failed to connect to 2605:9000:401:102::2: Network is unreachable"Trying other mirror.python2-urllib3-1.16-1.el7.noa FAILED                                          http://mirror.centos.org/centos/7/cloud/x86_64/openstack-ocata/common/python2-urllib3-1.16-1.el7.noarch.rpm: [Errno 14] curl#7 - "Failed to connect to 2605:9000:401:102::2: Network is unreachable"Trying other mirror.python2-urllib3-1.16-1.el7.noarch.rpm                                                                                                                                   | 126 kB  00:00:00     Running transaction checkRunning transaction testTransaction test succeededRunning transaction  Installing : python2-urllib3-1.16-1.el7.noarch                                                                                                                                           1/1 Error unpacking rpm package python2-urllib3-1.16-1.el7.noarcherror: unpacking of archive failed on file /usr/lib/python2.7/site-packages/urllib3/packages/ssl_match_hostname: cpio: rename  Verifying  : python2-urllib3-1.16-1.el7.noarch                                                                                                                                           1/1 Failed:  python2-urllib3.noarch 0:1.16-1.el7                                                                                                                                                          Complete!

解决方法:

可能是因为本地已经有的urllib3会和python2-urllib3 的rpm包起冲突,所以先把urllib3卸载了再安装rpm包:

$ sudo pip uninstall urllib3
原创粉丝点击