Are there Python 3 bindings for Clutter? If so, how can I get them and use them?

link|improve this question

38% accept rate
feedback

2 Answers

From what I gather, the answer is to use GObject rather than direct bindings, and PyGObject appears to have a Python 3 branch that apparently works - not that I have used it personally.

You might also want to see this question on using PyGObject with python 3.

link|improve this answer
I already have python-gobject working with Python 3. I want to know if it's possibly to use clutter with Python 3. – argentpepper Dec 6 '11 at 2:57
feedback
up vote 0 down vote accepted

As stated by Lattyware, the way to use Clutter in Python 3 is by installing "GObject introspection" data and allowing GObject to dynamically generate the bindings to the original C library.

On Ubuntu 11.10, install both Python 3 GObject and the GObject introspection data for clutter:

sudo apt-get install python3-gobject gir1.2-clutter-1.0

If you want to install the GTK+ Clutter library:

sudo apt-get install python3-gobject gir1.2-gtkclutter-1.0

Do not install the similarly named gir1.2-clutter-gtk-0.10, which has the same description but seems to be an older version.

To use Clutter or GtkClutter in Python 3:

from gi.repository import Clutter
from gi.repository import GtkClutter

Note that gi.repository is a special package which dynamically generates these Python classes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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