Desinstalado o vim, agora não é possível instalá-lo novamente

2

Eu removi o vim-tiny para obter a instalação completa seguindo este tutorial e agora não consigo instalar o vim por:

$ 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

Se eu simplesmente tentar instalar o vim-tiny novamente, a situação é a mesma:

$ 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

A saída de vim -version é:

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

Eu também tentei sudo apt-get update e sudo apt-get upgrade e sudo apt-get dist-upgrade e é tudo a mesma coisa. Eu estou usando o Ubuntu 14.04 LTS. É uma situação muito estranha para mim executar sudo apt-get remove vim-tiny , mas não posso executar sudo apt-get install vim-tiny depois disso. Alguma ajuda?

    
por foki 13.08.2014 / 12:39

1 resposta

4

vim está disponível em repositório principal do Ubuntu.

  

O componente main contém aplicativos que são software livre, podem ser livremente redistribuídos e são totalmente suportados pela equipe do Ubuntu. & amp; O componente universe é um instantâneo do mundo livre, de código aberto e Linux.

Então, primeiro habilite Main & amp; Repositórios do universo:

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

Em seguida, instale os pacotes seguindo o comando:

sudo apt-get update
sudo apt-get install vim

A seguir é útil para mais (visite para dependências não atendidas e para o pacote cannot-to-locate):

por Pandya 13.08.2014 / 12:49