Erro ao instalar o zlib1g-dev

1

Eu sou um novato do Ubuntu e gostaria de instalar o zlib1g-dev no Ubuntu 16.04.3 LTS.

O comando:

sudo apt-get install zlib1g-dev

ressurge no 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.
 zlib1g-dev : Depends: zlib1g (= 1:1.2.8.dfsg-2ubuntu4) but 1:1.2.8.dfsg-2ubuntu4.1 is to be installed
E: Unable to correct problems, you have held broken packages.

Estou pesquisando, mas não sei como consertar isso.

Mais algumas informações:

sudo apt-get -f install && sudo dpkg --configure -a
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 to upgrade, 0 to newly install, 0 to remove and 3 not to upgrade.


apt-cache policy build-essential libc6-dev libc-dev g++ libpcap-dev libpcap0.8-dev libpq-dev krb5-multidev comerr-dev libsqlite3-dev postgresql postgresql-9.3 zlib1g-dev
build-essential:
  Installed: 12.1ubuntu2
  Candidate: 12.1ubuntu2
  Version table:
 *** 12.1ubuntu2 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
        100 /var/lib/dpkg/status
libc6-dev:
  Installed: 2.23-0ubuntu9
  Candidate: 2.23-0ubuntu9
  Version table:
 *** 2.23-0ubuntu9 100
        100 /var/lib/dpkg/status
     2.23-0ubuntu3 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
libc-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
g++:
  Installed: 4:5.3.1-1ubuntu1
  Candidate: 4:5.3.1-1ubuntu1
  Version table:
 *** 4:5.3.1-1ubuntu1 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
        100 /var/lib/dpkg/status
libpcap-dev:
  Installed: (none)
  Candidate: 1.7.4-2
  Version table:
     1.7.4-2 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages
libpcap0.8-dev:
  Installed: (none)
  Candidate: 1.7.4-2
  Version table:
     1.7.4-2 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
libpq-dev:
  Installed: (none)
  Candidate: 9.5.2-1
  Version table:
     9.5.2-1 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
krb5-multidev:
  Installed: (none)
  Candidate: 1.13.2+dfsg-5
  Version table:
     1.13.2+dfsg-5 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
comerr-dev:
  Installed: (none)
  Candidate: 2.1-1.42.13-1ubuntu1
  Version table:
     2.1-1.42.13-1ubuntu1 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
libsqlite3-dev:
  Installed: (none)
  Candidate: 3.11.0-1ubuntu1
  Version table:
     3.11.0-1ubuntu1 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
postgresql:
  Installed: (none)
  Candidate: 9.5+173
  Version table:
     9.5+173 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main i386 Packages
postgresql-9.3:
  Installed: (none)
  Candidate: (none)
  Version table:
zlib1g-dev:
  Installed: (none)
  Candidate: 1:1.2.8.dfsg-2ubuntu4
  Version table:
     1:1.2.8.dfsg-2ubuntu4 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
    
por ksl 08.01.2018 / 17:28

2 respostas

4

Acabei de ter o mesmo problema ao tentar instalar algumas dependências para compilar o Ruby.

A maneira mais fácil de sair dessa miséria é anotar o pacote e a versão na segunda à última linha: zlib1g e 1:1.2.8.dfsg-2ubuntu4 , em seguida, emita o seguinte comando:

$ sudo apt install zlib1g=1:1.2.8.dfsg-2ubuntu4

Isso fará o downgrade de zlib1g para a versão exigida e a instalação deverá ser bem-sucedida posteriormente.

    
por SeinopSys 02.05.2018 / 17:17
0

Tente examinar com isto:

sudo aptitude install libssl-dev

Receba a mensagem:

The following packages have unmet dependencies:
zlib1g-dev : Depends: zlib1g (= 1:1.2.8.dfsg-2ubuntu4) but 1:1.2.8.dfsg- 
2ubuntu4.1 is installed.
The following actions will resolve these dependencies:

Keep the following packages at their current version:
1)     libssl-dev [Not Installed]
2)     zlib1g-dev [Not Installed]

Accept this solution? [Y/n/q/?]

Então 'e' e faça downgrade do seu zlib1g-dev.

Isso resolve o seu problema?

    
por fadli robbi 05.04.2018 / 11:24