当我添加
import pynotify
并尝试运行我的应用程序我得到
/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
用另一个例子我没有收到错误...
答案1
如果您使用的是 Gtk2,则应仅使用 pynotify。如果您使用的是 Gtk3(Quickly 的默认设置),则可以使用from gi.repository import Notify
。