J'essaie de compiler du code qui utilise glib.h. J'ai trouvé sur Internet que le paquet libglib2.0-dev le contient. Mais je ne peux pas l'installer.
Voici ma sortie de la console:
> Sudo apt-get install libglib2.0-dev
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:
libglib2.0-dev : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.2-0ubuntu1 is to be installed
Depends: libglib2.0-bin (= 2.48.0-1ubuntu4)
E: Unable to correct problems, you have held broken packages.
Et d'aptitude:
> Sudo aptitude install libglib2.0-dev
The following NEW packages will be installed:
libelf1:i386{a} libffi6:i386{a} libglib2.0-0:i386{ab}
libglib2.0-bin:i386{ab} libglib2.0-dev{b} libpcre3:i386{a}
libpcre3-dev{a} libpcre32-3{a} libpcrecpp0v5{a} libselinux1:i386{a}
zlib1g:i386{a}
0 packages upgraded, 11 newly installed, 0 to remove and 1 not upgraded.
Need to get 3680 kB of archives. After unpacking 21,9 MB will be used.
The following packages have unmet dependencies:
libglib2.0-bin : Conflicts: libglib2.0-bin:i386 but 2.48.0-1ubuntu4 is to be installed.
libglib2.0-bin:i386 : Conflicts: libglib2.0-bin but 2.48.2-0ubuntu1 is installed.
libglib2.0-dev : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.2-0ubuntu1 is installed.
libglib2.0-0 : Breaks: libglib2.0-0:i386 (!= 2.48.2-0ubuntu1) but 2.48.0-1ubuntu4 is to be installed.
libglib2.0-0:i386 : Breaks: libglib2.0-0 (!= 2.48.0-1ubuntu4) but 2.48.2-0ubuntu1 is installed.
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) libglib2.0-0:i386 [Not Installed]
2) libglib2.0-bin:i386 [Not Installed]
3) libglib2.0-dev [Not Installed]
Accept this solution? [Y/n/q/?]
Quand je tape 'y' ça ne fait rien. Lorsque je sélectionne "n", il me propose de désinstaller environ 1 000 paquets.
> apt policy libglib2.0-dev libglib2.0-0 libglib2.0-bin
libglib2.0-dev:
Installed: (none)
Candidate: 2.48.0-1ubuntu4
Version table:
2.48.0-1ubuntu4 500
500 http://archive.ubuntu.com/ubuntu xenial/main AMD64 Packages
libglib2.0-0:
Installed: 2.48.2-0ubuntu1
Candidate: 2.48.2-0ubuntu1
Version table:
*** 2.48.2-0ubuntu1 100
100 /var/lib/dpkg/status
2.48.0-1ubuntu4 500
500 http://archive.ubuntu.com/ubuntu xenial/main AMD64 Packages
libglib2.0-bin:
Installed: 2.48.2-0ubuntu1
Candidate: 2.48.2-0ubuntu1
Version table:
*** 2.48.2-0ubuntu1 100
100 /var/lib/dpkg/status
2.48.0-1ubuntu4 500
500 http://archive.ubuntu.com/ubuntu xenial/main AMD64 Packages
Sortie de mise à jour appropriée:
> Sudo apt update
Hit:1 http://pl.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://pl.archive.ubuntu.com/ubuntu xenial-updates InRelease
Ign:3 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:4 http://pl.archive.ubuntu.com/ubuntu xenial-backports InRelease
Hit:5 http://archive.ubuntu.com/ubuntu xenial InRelease
Hit:6 http://ppa.launchpad.net/embrosyn/cinnamon/ubuntu xenial InRelease
Get:7 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Hit:8 http://dl.google.com/linux/chrome/deb stable Release
Hit:9 http://ppa.launchpad.net/nathan-renniewaldock/flux/ubuntu xenial InRelease
Hit:10 http://ppa.launchpad.net/noobslab/themes/ubuntu xenial InRelease
Hit:11 http://ppa.launchpad.net/webupd8team/sublime-text-3/ubuntu xenial InRelease
Fetched 102 kB in 0s (129 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
1 package can be upgraded. Run 'apt list --upgradable' to see it.
> Sudo apt list --upgradable
Listing... Done
qemu/xenial-updates,xenial-security 1:2.5+dfsg-5ubuntu10.14 AMD64 [upgradable from: 1:2.5+dfsg-5ubuntu10.10]
N: There are 2 additional versions. Please use the '-a' switch to see them.
Je ne sais pas comment obtenir ce paquet.
Dans un premier temps, vous devez supprimer 2.48.2-0ubuntu1
version de libglib2.0-0
avec cette commande:
Sudo dpkg -r --force-all libglib2.0-0
Après cela, vous devez installer libglib2.0-0
et corriger les paquets cassés:
Sudo apt update
Sudo apt install -f
Sudo apt install libglib2.0-0
Enfin, vous pouvez installer:
Sudo apt install libglib2.0-dev
Où que vous soyez (probablement un PPA que vous avez installé à un moment donné), vous avez mis en cache les fichiers de package pour libglib2.0-0
et libglib2.0-bin
enregistrés localement. Ils sont une version plus récente que celles des dépôts officiels actuels et incompatibles avec ceux-ci.
Pour vider votre cache de paquets local et empêcher l'installation de ces paquets mis en cache, vous pouvez éventuellement (pas absolument nécessaire et peut-être pas aussi efficace que souhaité) exécuter
Sudo apt clean
Après cela ou comme seule étape, vous pouvez simplement indiquer à apt
les versions à installer manuellement:
Sudo apt install libglib2.0-dev libglib2.0-0=2.48.0-1ubuntu4 libglib2.0-bin=2.48.0-1ubuntu4