Python/GTK3 应用程序在导入“indicate”时崩溃(python-indicate)

Python/GTK3 应用程序在导入“indicate”时崩溃(python-indicate)

我正在尝试将我的 Python/GTK3 应用程序与 Ubuntu 的消息菜单集成,每次我尝试导入“indicate”(python-indicate)时,我的应用程序就会崩溃,并出现以下回溯:

/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

这看起来像是 GTK2 和 GTK3 之间的某种冲突...无论如何,我该如何解决这个问题?

谢谢。

答案1

使用

from gi.repository import Indicate

代替

import indicate

相关内容