Installazione di Vim in Ubuntu 14.04


25

Non riesco a installare Vim e ho bisogno di aiuto. Ho provato quanto segue:

root@cbitlab1:/home/cbitlib1# sudo -s
root@cbitlab1:/home/cbitlib1# apt-get install vim
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

E: Package ‘vim’ has no installation candidate

Come posso risolvere questo problema - Sono su 14.04.

Risposte:


36

Per essere sicuro di disporre dell'ultima sources.list

sudo apt-get update

quindi eseguire:

sudo apt-get install vim

11

Vimè preinstallato nel sistema operativo basato su Linux. Per Ubuntu la sua versione minima è preinstallata.

vim.tiny

Puoi creare un alias per eseguirlo come vim

alias vim=vim.tiny

Per rendere permanente questo alias,

gedit ~/.bashrc

Aggiungi alias vim=vim.tinyriga nel .bashrcfile.

Per ulteriori informazioni, vedere qui: Come posso creare un alias permanente di Bash?

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.