I'm developing an app which has to be 100% compatible on windows and on linux. On linux I have no problems, but on windows I came up with this message: from gi.repository import Gtk ImportError: No module named gi
I installed pygobject, pygtkallinone, gtk.. what am I missing?
gi
is for PyGObject, which is GTK+3, there each module is capitalized. When you useimport gtk
you are using PyGTK (GTK+2). – Oxeyed