Centos7_python2.7和yum完全卸载及重装

删除现有Python

  • rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps ##强制删除已安装程序及其关联
  • whereis python |xargs rm -frv ##删除所有残余文件 ##xargs,允许你对输出执行其他某些命令
  • whereis python ##验证删除,返回无结果

删除现有的yum

  • rpm -qa|grep yum|xargs rpm -ev --allmatches --nodeps
  • whereis yum |xargs rm -frv

安装python以及yum的rpm包

安装python

  • cd /usr/local/src/python
  • rpm -ivh python-* rpm-python-* --nodeps --force

安装yum

  • rpm -ivh yum-* --nodeps --force