删除 RHEL 上重复的 Python 安装

删除 RHEL 上重复的 Python 安装

我有一个安装了两个 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。

答案1

尝试执行 rpm -e。

就像是:

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

相关内容