导入 WebKit 会导致应用程序在启动时失败



我正在使用Quick制作一个应用程序,我想在我的窗口中添加一个Webkit小部件。我认为"应该足够容易",但和往常一样,它不可能那么容易。

从我添加import webkit的那一刻起,应用程序无法启动。

robin@RobinJ:~/Ubuntu One/Python/gtkreddit$ quickly run
/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

完整的源代码可以在这里找到。我说的具体文件是这个。

您似乎正在混合绑定。如果你已经在使用GObject Introspection,那就继续吧。尝试:

from gi.repository import WebKit

或者使用 GTK (pygtk) 的旧绑定。

相关内容

  • 没有找到相关文章

最新更新