web-dev-qa-db-fra.com

L'application Python / GTK3 se bloque lors de l'importation de "indiquer" (python-indiquer)

J'essaie d'intégrer mon application Python/GTK3 avec le menu de messagerie d'Ubuntu et chaque fois que j'essaie d'importer "indiquer" (indiquer python), mon application plante, avec le retraçage suivant:

/usr/lib/python2.7/dist-packages/gobject/constants.py:24: Warning: g_boxed_type_register_static: assertion `g_type_from_name (name) == 0' failed
  import gobject._gobject
/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:40: Warning: specified class size for type `PyGtkGenericCellRenderer' is smaller than the parent type's `GtkCellRenderer' class size
  from gtk import _gtk
/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:40: Warning: g_type_get_qdata: assertion `node != NULL' failed
  from gtk import _gtk

Cela ressemble à une sorte de conflit entre GTK2 et GTK3 ... de toute façon, comment pourrais-je résoudre ce problème?

Merci.

5
aviraldg

Utilisation

from gi.repository import Indicate

au lieu de

import indicate
6
Florian Diesch