E: Não é possível corrigir problemas, você realizou pacotes quebrados - libpq-dev

-1

Estou tentando instalar o libpq-dev ainda recebendo um erro ao tentar fazer isso.

Quando eu corro:

sudo apt-get install libpq-dev

Eu recebo o seguinte erro:

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:
 libpq-dev : Depends: libpq5 (= 9.5.5-0ubuntu0.16.04) but 9.6.0-1 is to be    installed
             Depends: krb5-multidev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Quando eu corro apt-cache policy libpq5 :

libpq5:
  Installed: 9.6.0-1
  Candidate: 9.6.0-1
  Version table:
 *** 9.6.0-1 100
        100 /var/lib/dpkg/status
     9.5.5-0ubuntu0.16.04 500
        500 http://il.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
     9.5.4-0ubuntu0.16.04 500
        500 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages
     9.5.2-1 500
        500 http://il.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

Como posso resolver o problema?

    
por peterrobertlzlz 14.12.2016 / 13:28

1 resposta

0

Parece que libpq-dev do pacote é obrigatório libpq5 9.5.5-0 versão, enquanto você tem 9.6.0-1 versão. Você precisa forçar o downgrade de libpq5 package:

sudo apt-get install libpq5=9.5.5-0ubuntu0.16.04

Seguido por krb5-multidev installation:

sudo apt-get install krb5-multidev

Atualizar

Não sei por que isso está ocorrendo, mas se você fizer o download de libkrb5-3 e libgssapi-krb5-2 do terminal por padrão, ele instalará a versão 1.13.2+dfsg-5 . Aplique o método anterior para resolver este problema:

sudo apt-get install libgssapi-krb5-2=1.13.2+dfsg-5
sudo apt-get install libkrb5-3=1.13.2+dfsg-5
    
por Liso 15.12.2016 / 10:07