以前用Ubuntu的时候感觉很简单的事到ContOS上却变得很头痛,在执行以下命令安装python-pip居然什么也没执行。
1
|
|
|
后来google了一下说是这个包在EPEL源里,要添加EPEL源才可以。然后按博客里说的方法添加,执行以下命令:
1
|
|
sudo rpm - ivh epel - release * |
但是最后提示系统里已经安装了最新的epel包,但为什么却用不了呢?google了一天多都没有结果,最后在一个博客看到一句话让我找到了方向。CentOS中有的源是被禁用的,通过以下命令可以查看启用的源和禁用的源。
1
|
2
3
4
|
/ / 查看启用的源列表 yum repolist / / 查看禁用的源列表 yum repolist disabled |
我查看了一下果然epel在禁用列表里,那怎么启用呢?其实只要修改一个文件就可以了,用vim打开下面的文件
1
|
|
vim / etc / yum.repos.d / epel.repo |
将下面第一个和第三个的enabled=0改成enabled=1,第二个是测试版的可能不稳定所有别修改。
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[epel] name = Extra Packages for Enterprise Linux 6 - $basearch #baseurl= http://download.fedoraproject.org/pub/epel/6/ $basearch mirrorlist = https: / / mirrors.fedoraproject.org / metalink?repo = epel - 6 &arch = $base arch failovermethod = priority enabled = 0 gpgcheck = 1 gpgkey = file : / / / etc / pki / rpm - gpg / RPM - GPG - KEY - EPEL - 6 [epel - debuginfo] name = Extra Packages for Enterprise Linux 6 - $basearch - Debug #baseurl= http://download.fedoraproject.org/pub/epel/6/ $basearch/debug mirrorlist = https: / / mirrors.fedoraproject.org / metalink?repo = epel - debug - 6 &arch = $basearch failovermethod = priority enabled = 0 gpgkey = file : / / / etc / pki / rpm - gpg / RPM - GPG - KEY - EPEL - 6 gpgcheck = 1 [epel - source] name = Extra Packages for Enterprise Linux 6 - $basearch - Source #baseurl= http://download.fedoraproject.org/pub/epel/6/SRPMS mirrorlist = https: / / mirrors.fedoraproject.org / metalink?repo = epel - source - 6 &arc h = $basearch failovermethod = priority enabled = 0 gpgkey = file : / / / etc / pki / rpm - gpg / RPM - GPG - KEY - EPEL - 6 gpgcheck = 1 |
现在可以用了,如果不修改上面的文件也可以用就中在安装的命令里加以下参数也可以。
1
|
|
- - enablerepo = epel |
例
1
|
|
yum - - enablerepo = epel install python - pip |
总结
以上所述是小编给大家介绍的CentOS下使用yum安装python-pip失败的完美解决方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://www.jianshu.com/p/2e9b041360c1