apt-get 问题和箭头

apt-get 问题和箭头

大家好,我是 ubuntu 新手,我尝试使用命令“apt-get install vim”,但实际上并没有安装,我不明白这意味着什么,所以我复制了终端显示的内容。我确信 vim 和 vi 都已安装,但在使用 vi 编辑器时,退格键和箭头按钮无法正常工作。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package vim is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

谢谢

答案1

vim可能已安装。使用type vim查看,或ls /usr/bin/vim

要查找包,请使用apt-cache search vim。在我的系统(64 位 Ubuntu 14.04.3 LTS)上,vim可执行文件是包的一部分vim-gnome

您不明白该消息的哪一部分?

Package vim is not available

“不可用”。也许该包未被调用vim

but is referred to by another package只是意味着您提到了它。

答案2

在我的系统上它没有安装但尝试运行它提供了以下建议:

The program 'vim' can be found in the following packages:
 * vim
 * vim-gnome
 * vim-tiny
 * vim-athena
 * vim-gtk
 * vim-nox
Try: sudo apt-get install <selected package>

它也可通过软件中心获得。

您可以尝试以下操作:

安装 vim

您会注意到需要 sudo 来安装任何东西。

相关内容