Não é possível instalar o libgtkmm-2.4-dev no Kubuntu 13.10 - dependências não atendidas

2

Estou tentando instalar o grub-customizer no Kubuntu 13.10. Depois de muito mexer, seguindo vários conselhos online, cheguei ao ponto em que eu precisava instalar o libgtkmm-2.4-dev (que eu não sei de nada). Aqui está o que eu tenho quando tentei:

The following packages have unmet dependencies:

libgtkmm-2.4-dev :
 Depends: libgtk2.0-dev (>= 2.24.0) but it is not going to be installed

 Depends: libglibmm-2.4-dev (>= 2.27.93) but it is not going to be installed

 Depends: libpangomm-1.4-dev (>= 2.27.1) but it is not going to be installed

 Depends: libatkmm-1.6-dev (>= 2.22.2) but it is not going to be installed

E agora não consigo mais.

    
por Paul A. 24.10.2013 / 04:01

1 resposta

1

A partir da página de manual de apt-get :

   -f, --fix-broken
       Fix; attempt to correct a system with broken dependencies in place.
       This option, when used with install/remove, can omit any packages
       to permit APT to deduce a likely solution. If packages are
       specified, these have to completely correct the problem. The option
       is sometimes necessary when running APT for the first time; APT
       itself does not allow broken package dependencies to exist on a
       system. It is possible that a system's dependency structure can be
       so corrupt as to require manual intervention (which usually means
       using dselect(1) or dpkg --remove to eliminate some of the
       offending packages). Use of this option together with -m may
       produce an error in some situations. Configuration Item:
       APT::Get::Fix-Broken.

Tente sudo apt-get install -f , em seguida, sudo apt-get install libgtkmm-2.4-dev .

    
por James Fu 24.10.2013 / 04:10