美文网首页
linux - 卸载python

linux - 卸载python

作者: 张云飞Vir | 来源:发表于2020-11-23 09:17 被阅读0次

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 

相关文章

网友评论

      本文标题:linux - 卸载python

      本文链接:https://www.haomeiwen.com/subject/obdmiktx.html