Ubuntu – How to install vim-gnome on Ubuntu 19.10

19.10aptpackage-managementvim

On one laptop running Ubuntu 19.04 I have installed vim-gnome without any problems. On a second laptop running Ubuntu 19.10 I get the following error when using:

sudo apt install vim-gnome

Reading package lists… Done Building dependency tree Reading
state information… Done Package vim-gnome 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

E: Package 'vim-gnome' has no installation candidate

How can I install vim-gnome on a laptop running Ubuntu 19.10?

Best Answer

vim-gnome has been removed from the repositories for 19.10. However, the gtk3 version is available and is pretty much the same package.

sudo apt install vim-gtk3

Hope this helps!

Related Question