No obtengo libglib2.0-dev (bibliotecas actualizadas) incluso después de actualizar de Ubuntu 14.04 a 16.06

No obtengo libglib2.0-dev (bibliotecas actualizadas) incluso después de actualizar de Ubuntu 14.04 a 16.06

Quería compilar e instalar algo para reddit desde git.

Mientras usaba ./configure.ac, mostró el siguiente error.

./configure: line 5088: GLIB_GSETTINGS: command not found
./configure: line 5089: syntax error near unexpected token `1.42.0'
./configure: line 5089: `GOBJECT_INTROSPECTION_CHECK(1.42.0)'

Mientras buscaba aquí en stackoverflow, me mostró que GLIB_GSETTINGS se encuentran en libglib2.0-dev, pero cuando intenté instalarlo a través de

sudo apt-get install libglib2.0

Nuevamente arrojó el siguiente error.

    Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'libglib2.0-0-refdbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-cil-dev' for regex 'libglib2.0'
Note, selecting 'libglib2.0-tests' for regex 'libglib2.0'
Note, selecting 'libglib2.0-0-dbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-bin' for regex 'libglib2.0'
Note, selecting 'libglib2.0-cil' for regex 'libglib2.0'
Note, selecting 'libglib2.0-dbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-dev' for regex 'libglib2.0'
Note, selecting 'libglib2.0-doc' for regex 'libglib2.0'
Note, selecting 'libglib2.0-data' for regex 'libglib2.0'
Note, selecting 'libglib2.0-0' for regex 'libglib2.0'
libglib2.0-0 is already the newest version (2.48.1-1~ubuntu16.04.1).
libglib2.0-data is already the newest version (2.48.1-1~ubuntu16.04.1).
libglib2.0-bin is already the newest version (2.48.1-1~ubuntu16.04.1).
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-0-dbg : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
 libglib2.0-0-refdbg : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
 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)

Actualicé el sistema de 14.04 a 16.04 hace un mes, ¿me perdí algo o estoy haciendo algo mal ahora?

El algo para la fuente de reddit git está aquí.https://github.com/samdroid-apps/something-for-reddit Puedes consultar todas las dependencias aquí también,Detalles del paquete: algo-para-reddit-git 0.1-1

Respuesta1

La respuesta es bajar de categoría.

Mientras buscaba nuevamente en stackoverflow, encontré que otros enfrentan los mismos problemas y se les sugirió degradar la biblioteca respectiva con los siguientes comandos.

sudo apt-get install libglib2.0-0=2.48.0-1ubuntu4

sudo apt-get install libglib2.0-dev

Ahora estoy atascado con el siguiente número, es decir ./configure: line 5089: GOBJECT_INTROSPECTION_CHECK(1.42.0)'

Aquí está el enlace que sugiere la degradación:https://askubuntu.com/questions/58664/cant-install-package-libglib2-0-dev-porque-depende-de-alguna-versión-desconocida/60314

información relacionada