I recently made my first app with pygtk using Anjuta. It works well under Linux, so it's time to share it with relatives and friends. I installed Python, pygtk and the Gtk all-in-one bundle (Cairo, pyGobject ect) on windows and tried to run it.
I had an error saying self.builder.add_from_file(UI_FILE)
Digging a bit in the code I found out that my UI_FILE contains
<!-- interface-requires gtk+ 3.0 -->
And my python console says:
>>> import gtk
>>> gtk.gtk_version
(2, 22, 1)
As far as I know I installed the latest version of Gtk on my win32 machine. Now I don't know how to tackle the problem: re-designing the interface to be compatible with gtk2.22.1? (then how?) using a cross compiler from my linux distro? (at what cost in complexity/stability?)
Thank you for your time, and you answers.