How do I do GTK+ 3 development in pyCharm 2.5?
Python and pyCharm n00b here.
I have pyCharm 2.5 installed on Ubuntu 12.04 Beta 2. I want to use Glade 3.12 to create UIs for my pyCharm project. I'm getting errors when I use GtkBuilder to read in the glade file and generate my UI. I'm importing the gtk namespace but the external reference is gtk-2.0. How do I import and use gtk3?
Any help would be most appreciated. Thanks.
Please sign in to leave a comment.
If you run python from the command line and 'import gtk', does it import GTK 2 or GTK 3?
>>> import gtk
>>> gtk
<module 'gtk' from '/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.pyc'>