yum 由于缺少 Python 模块而损坏 (RHEL 6.4)

yum 由于缺少 Python 模块而损坏 (RHEL 6.4)

当我跑步时$ yum我看到:

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

   /usr/lib64/libssh2.so.1: symbol EVP_aes_128_ctr, version libcrypto.so.10 not defined in file libcrypto.so.10 with link time reference

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.6.6 (r266:84292, Oct 12 2012, 14:23:48) 
[GCC 4.4.6 20120305 (Red Hat 4.4.6-4)]

If you cannot solve this problem yourself, please go to 
the yum faq at:
  http://yum.baseurl.org/wiki/Faq

我更新了 Python,现在如果我运行$ python --version我会看到Python 2.7.12rc1.但根据错误,这与当前版本不匹配。有任何想法吗?谢谢!

答案1

也许无需重新安装操作系统的更好方法是下载 python 包(可能还有任何 python 模块包)并用于rpm在升级后的 Python 上安装它们。

RHEL 6 的 python 包应该可以python-2.6.6-64.el6.x86_64从 Red Hat 获得,或者您可以从 RHEL6 .iso 文件中获取它。您可能必须使用--forceRPM 上的选项,因为它必须覆盖包和任何文件。

之后yum应该可以工作,尽管 Python 升级仍然存在一些问题。升级 Python 时,请确保将--prefix其安装在以下位置:/usr/local/python2.7.12或远离系统 Python 文件的任何位置。

相关内容