web-dev-qa-db-fra.com

Vim désinstallé, maintenant ne peut plus l'installer

J'ai supprimé vim-tiny pour obtenir une installation complète à la suite de ceci tutoriel et maintenant je ne peux pas installer vim en:

$ Sudo 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

Si j'essaie simplement d'installer à nouveau vim-tiny, la situation est la même:

$ Sudo apt-get install vim-tiny
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package vim-tiny 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-tiny' has no installation candidate

La sortie de vim -version est:

$ vim -version
The program 'vim' can be found in the following packages:
 * vim
 * vim-gnome
 * vim-tiny
 * vim-athena (You will have to enable component called 'universe')
 * vim-gtk (You will have to enable component called 'universe')
 * vim-nox (You will have to enable component called 'universe')
Try: Sudo apt-get install <selected package>

J'ai aussi essayé Sudo apt-get update et Sudo apt-get upgrade et Sudo apt-get dist-upgrade et c'est tout pareil. J'utilise Ubuntu 14.04 LTS. C'est une situation très étrange pour moi d'effectuer Sudo apt-get remove vim-tiny mais je ne peux pas effectuer Sudo apt-get install vim-tiny après cela. De l'aide?

3
foki

vim est disponible sur référentiel principal d’Ubuntu.

Le composant principal contient des applications qui sont des logiciels libres, peuvent être redistribués librement et sont entièrement pris en charge par l'équipe Ubuntu. & Le composant univers est un instantané du monde libre, à code source ouvert et du monde Linux.

Donc, commencez par activer les référentiels Main & Universe:

Sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"

Puis les paquets installés en suivant la commande:

Sudo apt-get update
Sudo apt-get install vim

Ce qui suit est utile pour plus de détails (visitez le site pour les dépendances non satisfaites et les paquets impossibles à localiser):

5
Pandya