美文网首页
如何彻底卸载Ubuntu16.04自带的Python3.5

如何彻底卸载Ubuntu16.04自带的Python3.5

作者: 西漠 | 来源:发表于2018-01-19 00:05 被阅读5036次

    1.卸载python3.5

    sudo apt-get remove python3.5
    

    2.卸载python3.5以及它的依赖包

    sudo apt-get remove --auto-remove python3.5
    

    3.清除python3.5

    要想清除python3.5的配置文件和数据文件,执行以下命令:

    sudo apt-get purge python3.5
    sudo apt-get purge --auto-remove python3.5
    

    相关文章

      网友评论

          本文标题:如何彻底卸载Ubuntu16.04自带的Python3.5

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