linux - 卸载python
2020-11-23 本文已影响0人
张云飞Vir
linux - 卸载python
命令执行即可
##强制删除已安装程序及其关联
[root@spider1 bin]# rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps
##删除所有残余文件 ##xargs,允许你对输出执行其他某些命令
[root@spider1 bin]# whereis python |xargs rm -frv
##验证删除,返回无结果
[root@spider1 bin]# whereis python