我试着这样改进Gtk:from gi.repository import Gtk
我得到以下错误:ImportError: When using gi.repository you must not import static modules like "gobject". Please change all occurrences of "import gobject" to "from gi.repository import GObject"
当我尝试from gi.repository import GObject
请帮我解决这个问题!
最佳答案
我重新安装了python-gobject
和python-gobject-2
,现在一切正常!
关于python - 请将所有出现的“导入gobject”更改为“从gi.repository导入GObject”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36247420/