linux卸载python

本文提供了在Linux系统中彻底卸载Python3和pip3的详细步骤,包括使用whereis、find命令删除相关文件,以及通过rpm查询和yum移除Python3包,确保系统清理干净。

作者:zhuge··预计阅读 1 分钟·809 阅读·0 评论
linux卸载python

linux卸载python 第一步 whereis python3 | xargs rm -rfv

第二步 find / -name python3 | xargs rm -rfv

第三步卸载pip whereis pip3 | xargs rm -rfv

第四步 find / -name pip3 | xargs rm -rfv

第五步卸载rpm ,彻底卸载 rpm -qa | grep python3 yum remove python3*

相关文章

评论

加载中...