Não é possível instalar o libgtk2.0-dev no ubuntu 16.04

3

Ao instalar o libgtk2.0-dev, 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:
 libgtk2.0-dev : Depends: libglib2.0-dev (>= 2.27.3) but it is not going to be installed
                 Depends: libgdk-pixbuf2.0-dev (>= 2.21.0) but it is not going to be installed
                 Depends: libpango1.0-dev (>= 1.20) but it is not going to be installed
                 Depends: libatk1.0-dev (>= 1.29.2) but it is not going to be installed
                 Depends: libcairo2-dev (>= 1.6.4-6.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu tentei muitas coisas como -f flag, synaptic, instalá-las individualmente, instalar todas as dependências de uma só vez, mas tudo falhou.

A libgtk2.0-dev não é suportada no Ubuntu 16.04?

EDITAR: saída de apt-cache policy libgtk2.0-dev libglib2.0-dev

libgtk2.0-dev:
  Installed: (none)
  Candidate: 2.24.30-1ubuntu1
  Version table:
     2.24.30-1ubuntu1 500
        500 http://mirror.dhakacom.com/ubuntu-archive xenial/main amd64 Packages
libglib2.0-dev:
  Installed: (none)
  Candidate: 2.48.0-1ubuntu4
  Version table:
     2.48.0-1ubuntu4 500
        500 http://mirror.dhakacom.com/ubuntu-archive xenial/main amd64 Packages
    
por Al Mamun 17.02.2017 / 16:41

2 respostas

3

Como resolvi o problema: Eu tentei instalar essas dependências manualmente. Primeiro tentou instalar o sudo apt-get install libglib2.0-dev , mas deu o seguinte erro:

The following packages have unmet dependencies:
 libglib2.0-dev : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
                  Depends: libglib2.0-bin (= 2.48.0-1ubuntu4)

Então eu tentei instalar a dependência de glibs junto com o glib: sudo apt-get install libglib2.0-dev libglib2.0-0=2.48.0-1ubuntu4

Desta vez, a instalação do pacote foi bem-sucedida.

Depois disso eu emiti sudo apt-get install libgtk2.0-dev e funciona!

    
por Al Mamun 22.02.2017 / 07:43
0

Eu também tive esse problema. Mas, como a versão de libglib2.0-0 foi alterada para 2.48.2-0ubuntu1 (era, no momento da resposta original , 2.48.0-1ubuntu4 ), @ Reya276, basta alterar a versão de acordo.

A solução completa, atualmente para 16.04 lts , é:

sudo apt-get install libglib2.0-dev libglib2.0-0=2.48.2-0ubuntu1
    
por mzcl-mn 02.05.2018 / 17:32