sudo apt-get install vim——不起作用,由于依赖性问题而失败

sudo apt-get install vim——不起作用,由于依赖性问题而失败
Reading package lists... Done
Building dependency tree
Reading state information... Done
vim is already the newest version (2:7.4.1689-3ubuntu1.3).
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 python3 : Depends: dh-python but it is not installable
 python3-setuptools : Depends: python3-pkg-resources (= 20.7.0-1) but it is not installable
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

进一步尝试运行apt-get -f install vim 但再次出现同样的错误。

答案1

首先,你已经安装了vim,而且是最新版本,不需要再额外安装。

其次,您在使用 Python 软件包时遇到了一些问题。要解决这些问题:
- 运行sudo apt-get -f install然后运行sudo dpkg --configure -a​​。最后,运行sudo apt-get -f install
- 如果问题未解决,请运行sudo apt-get install --reinstall python3

答案2

如果之后不起作用sudo apt-get -f install,请运行命令sudo apt-get update进行更新。

相关内容