Erro ao instalar o git [duplicado]

0

Estou tentando instalar o git no Ubuntu 16.04 LTS, mas toda vez que recebo esta mensagem. Eu já desinstalei o libpcre2-8-0, e o synaptic não mostra nada em pacotes quebrados. Ele só mostra quando eu marco o pacote git-core para instalar, e eu não sei o que fazer depois.

$ sudo apt install git
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 git : Depends: libpcre2-8-0 (>= 10.22) but 10.21-1 is to be installed
E: Unable to correct problems, you have held broken packages.
    
por Vehns 19.03.2018 / 18:49

1 resposta

0

Solução simples usa sináptico.

O que você poderia tentar

sudo apt install libpcre2-8-0 

Caso contrário, obtenha synaptic se possível e tente instalar o git através dele. É um aplicativo de front end para o apt. Tente instalá-lo com o apt. Se ocorrerem problemas, obtenha os pacotes aqui link

dpkg -i ~/Downloads/'package name'

Isso também lhe dará a saída se você precisar de mais alguma coisa.

    
por Joeri_Damian 19.03.2018 / 19:06