I'm using python and want to embed gtk3 widgets in clutter stage. However, it seems pyclutter-gtk and pyclutter-gsk has been stopped for a while. Is there any alternative binding that we can use in python? I tried google but with no luck. There's only one project(http://code.google.com/p/pyclutter-widgets/) seems interesting but it's inactive for a year...

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

All python bindings for gtk3 and clutter have been moved to the introspection-based pygobject; you should be able to use Clutter-Gtk and Clutter-Gst from pygobject >= 2.30 by simply doing:

from gi.repository import GtkClutter

You can follow the documentation on the Gnome wiki entry for IntrospectionPorting.

link|improve this answer
Thanks for your reply. It works for Clutter, but I got ImportError when importing ClutterGtk. FYI, I'm using ubuntu 11.10 with gnome3 and python 2.7. I've installed libclutter-gtk-1.0*. Any clue? – Derek Wu Nov 7 '11 at 14:46
Well... GtkClutter works but not ClutterGtk. I figured that I've installed gir1.2-gtkclutter-1.0. – Derek Wu Nov 7 '11 at 15:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.