无法使用 apt 删除 python-pip 包

无法使用 apt 删除 python-pip 包

这是我的命令:

  1. 检查是否存在
❯ sudo apt list python-pip       
Listing... Done
python-pip/cosmic,cosmic 9.0.1-2.3 all
  1. 去掉它
❯ sudo apt remove python-pip 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package 'python-pip' is not installed, so not removed
0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.

我是 Linux 新手。当我安装 Ubuntu 发行版时,我发现 python 命令指的是 v2.7,python3 指的是 v3.6,而 pip 处理的是 python v2.7。我想要做的是删除 python 和 pip,因为到明年它们将不再受保护,但愿如此!

那么我遇到了什么问题?

答案1

我认为您实际上没有安装 python-pip。系统明确指出未安装 python-pip。仅仅因为包在数据库(apt 列表)中并不一定意味着它已安装。

相关内容