linux中卸载Python相关

1:卸载python

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

2.卸载yum

rpm -qa|grep yum|xargs rpm -ev --allmatches --nodeps
rm -rf /etc/yum.repos.d/*
whereis yum|xargs rm -frv

3.验证是否删除干净

whereis python #验证删除,返回应该是没有结果的
whereis yum
posted @ 2022-04-06 22:17  下个ID见  阅读(487)  评论(0)    收藏  举报