安装 Python 2.7 破坏了“yum”

安装 Python 2.7 破坏了“yum”

我安装了 Python 2.7,并/usr/bin/python指向/usr/local/bin/python2.7

安装 Python 2.7 后,每次使用时都会收到以下错误消息yum

> sudo yum install setuptools
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:

   No module named yum

Please install a package which provides this module, or
verify that the module is installed correctly.

It's possible that the above module doesn't match the
current version of Python, which is:
2.7.2 (default, Dec 25 2011, 19:13:04) 
[GCC 4.1.1 20070105 (Red Hat 4.1.1-52)]

If you cannot solve this problem yourself, please go to 
the yum faq at:
  http://wiki.linux.duke.edu/YumFaq

如何yum在 CentOS 上使用 Python 2.7?

答案1

您可以编辑 yum (/usr/bin/yum) 对 python 的调用,如下所示:

/usr/bin/python2.4 的版本

首先进行备份;-)

答案2

很简单 - 不要将 /usr/bin/python 指向任何其他 python。相反,如果您想使用 python2.7,只需修改路径以将 /usr/local/bin 放在首位。

一般来说,除了 /usr/local 之外,你不应该触碰 /usr/{bin,lib...} 中的任何内容

答案3

这就是为什么您要安装新版本的 python,而不是已经随您的操作系统安装的版本,并且 yum 依赖于该版本。

您只需编辑usr/bin/yum并将 shebang 更改为发行版中安装的相同版本即可。更改

#!/usr/bin/python

到特定版本

#!/usr/bin/python2.6 (in my os)

答案4

您无法让 yum 与 Python 2.7 配合使用。相反,您还需要安装 2.7,但保留 2.4,以免破坏 yum。

阿尔弗雷德·基耶萨写道指导整个过程的指南。检查一下,看看它是否能帮助你完成你需要做的事情。

相关内容