CentOS7 yum安装步骤

1.删除python
rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps ##强制删除已安装程序及其关联
whereis python |xargs rm -frv                             ##删除所有残余文件 ##xargs,允许你对输出执行其他某些命令
[root@test ~]# whereis python                             ##验证删除,返回无结果
2、删除现有的yum
rpm -qa|grep yum|xargs rpm -ev --allmatches --nodeps
whereis yum |xargs rm -frv

ll /etc/*centos*
cat /etc/centos-release   ##CentOS Linux release 7.6.1810 (Core) 返回信息
访问地址:http://mirrors.163.com/centos/7.6.1810/os/x86_64/Packages/
下载
python-2.7.5-76.el7.x86_64.rpm
python-iniparse-0.4-9.el7.noarch.rpm
python-pycurl-7.19.0-19.el7.x86_64.rpm
python-devel-2.7.5-76.el7.x86_64.rpm
python-libs-2.7.5-76.el7.x86_64.rpm
python-urlgrabber-3.10-9.el7.noarch.rpm
rpm-python-4.11.3-35.el7.x86_64.rpm

下载yum包
yum-3.4.3-161.el7.centos.noarch.rpm
yum-metadata-parser-1.1.4-10.el7.x86_64.rpm
yum-plugin-fastestmirror-1.1.31-50.el7.noarch.rpm

安装python
rpm -ivh python-* rpm-python-* 或者 rpm -ivh python-*   rpm-python-* --nodeps --force ##强制安装
rpm -ivh yum-*  ##安装yum

你可能感兴趣的:(Linux)