本文转载自昔日暖阳,原文地址:http://www.osheep.cn/4801.html
最近为了部署一个Python应用到腾讯云服务器,强行将服务器上的Python版本进行了升级,升级后发现,yum功能无法使用,决定重装yum快速解决!
相关文件:
rpm -qa|grep python|xargs rpm -e --allmatches --nodeps
whereis python|xargs rm -fr
rpm -qa|grep yum|xargs rpm -e --allmatches --nodeps
rm -rf /etc/yum.repos.d/*
whereis yum|xargs rm -fr
tar -xzvf yum-soft.tar.gz
rpm -ivh python-* rpm-python-*
rpm -ivh yum-*
yum --version