Ubuntu – vim command does not work

14.04execute-commandvivim

I am trying to open vim on my Ubuntu 14.04 64 bit by entering the command in the terminal :

vim

But i get the response :

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>

But i assume( wrongly?) that vim comes by default in the distro. I confirm this by checking the installed packages :

dpkg --get-selections | grep -v deinstall > ~/Desktop/packages

It lists vim-common and vim-tiny.

So why doesn't vim open up? On the other hand, if i enter the command vi, it opens up vim in vi compatible mode.

Best Answer

Yes, it comes by default. Your mistake is that you think you should type vim to launch it. Just type vim and press Tab, and you will get the command vim.tiny, which is the correct command.

If you need to run VIM by vim command, you should install vim package:

sudo apt-get install vim

You can read more about differences between them in What features does vim-tiny have?