Ubuntu18.04卸载Python3.8(非系统自带)

前言

以前个人习惯用python3.8版本的,于是在公司电脑就安装了Python3.8版本的,保留了原来的Python3.6,只是切换了Python的版本。
想要卸载系统自带的Python版本,是不建议的,看到网上很多朋友都卸载了系统自带的Python版本,结果弄得要重装系统。在此非常不建议卸载系统自带的Python版本。

一、1、卸载python3.8

sudo apt-get remove --purge python3.8

二、完全卸载python3.8及其依赖软件(慎用!这里会删除python3.8及依赖python3.8的软件包)

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

三、清除python3.8及其依赖软件的安装包

sudo apt-get autoclean python3.8

最后

还是提醒各位不要卸载系统自带的Python版本,否则出了问题非常麻烦。

你可能感兴趣的:(Python,python,开发语言,后端)