Yum

在 RHEL 上刪除重複的 Python 安裝

  • December 29, 2019

我有一個安裝了兩個 Python 的 RHEL 盒子,我如何指定要刪除哪個?我試過“package-cleanup –cleandupes”,但沒有效果。

這是騙子:

[root@lolserver:~/]# rpm -qa python
python-2.7.5-79.el7_6.x86_64
python-2.7.5-86.el7.x86_64
[root@lolserver:~/]# yum --showduplicates list python | expand
Installed Packages
python.x86_64                2.7.5-79.el7_6                  @rhel7
python.x86_64                2.7.5-86.el7                    installed

我想刪除通過 RPM 手動安裝的 python-2.7.5-86.el7.x86_64。

嘗試執行 rpm -e。

就像是:

$ sudo rpm -e python-2.7.5-86.el7.x86_64

引用自:https://serverfault.com/questions/997053