Não é possível instalar o subversion ubuntu 14.04 dependências não atendidas [duplicado]

0

Não consegui instalar o subversion no Ubuntu 14.04. Estou recebendo a mensagem de erro abaixo:

$ sudo apt-get install subversion
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:
 subversion : Depends: libsvn1 (= 1.8.8-1ubuntu3.2) but it is not going to be installed
              Depends: libapr1 (>= 1.4.8-2~) but it is not installable
              Depends: libaprutil1 (>= 1.2.7+dfsg) but it is not installable
E: Unable to correct problems, you have held broken packages.

Por favor, pode ser o problema.

    
por Digitlimit 17.05.2017 / 09:28

1 resposta

1

Uma causa possível é que você não tem as versões mais recentes de alguns pacotes. Você deve tentar atualizar primeiro executando este:

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install subversion
    
por Kalle Elmér 17.05.2017 / 09:56