Ubuntu 16.04 中 Python 卸载问题

Ubuntu 16.04 中 Python 卸载问题

我正在使用 Ubuntu 16.04,在遇到 pip 和 python 的一些问题后,我决定尝试使用以下命令卸载 python 和 python3:

sudo apt-get purge python 

sudo apt-get purge python3

现在的问题是,如果我输入 python 或 python3,我什么也得不到,但 python shell 会打开,好像一切都还在那里。所以我不明白我用命令做了什么/卸载了什么。此外,我尝试通过输入以下内容重新安装我删除的内容:

sudo apt-get install python

但它并没有下载任何东西,而是给我一条这样的消息:

`Some packages could not be installed. This may mean that you have
 requested an impossible situation or if you are using the unstable
 distribution that some required packages have not yet been created
 or been moved out of Incoming.
 The following information may help to resolve the situation:

 The following packages have unmet dependencies:
 python : Pre-Depends: python-minimal (= 2.7.11-1~) but version 2.7.12-1~16.04 it is going to be installed
          Depends: libpython-stdlib(=2.7.11-1) but version 2.7.12-1~16.04 it is going to be installed
 E: Unable to correct problems, you have held broken packages.`

我对这个世界几乎一无所知,所以我真的不知道这里发生了什么,也因为我读过默认的 python 不能卸载,否则系统会崩溃。谢谢大家的帮助!!

答案1

您不应该删除 Python 或 Python3,因为这会使您的操作系统无法满足其基本功能所需的依赖项。您可以尝试使用dpkg --configure -a或修复问题sudo apt-get --fix-missing install,但很有可能您的操作系统已经损坏,需要重新安装。

相关内容