无法安装 Gvim

无法安装 Gvim

我在 12.04 上安装了 Gvim 和 synaptic 包管理器,每次我从终端运行 Gvim 时都会出现警告。因此我删除了它并尝试再次安装,但软件中心出现以下错误:

The following packages have unmet dependencies:

vim-gnome: Depends: vim-gui-common (= 2:7.3.429-2ubuntu2) but 2:7.3.429-2ubuntu2.1 is to be installed
       Depends: vim-common (= 2:7.3.429-2ubuntu2) but 2:7.3.429-2ubuntu2.1 is to be installed
       Depends: vim-runtime (= 2:7.3.429-2ubuntu2) but 2:7.3.429-2ubuntu2.1 is to be installed

我从软件中心禁用了存储库并仅启用了“主”存储库,但错误仍然存​​在,软件中心有时也会崩溃。

那我该怎么办呢?

答案1

尝试删除“vim-common”:

$ sudo apt-get autoremove vim-common

然后使用以下命令安装“vim”:

$ sudo apt-get install vim

这将安装正确版本的“vim-common”,稍后您可以通过软件包管理器安装 GVim。

答案2

我认为您还需要启用更新源。

这看起来像是尝试安装旧版本的 gvim,同时安装了一些组件的较新版本,并进行了严格的版本检查。

相关内容