Are there Python 3 bindings for Clutter? If so, how can I get them and use them?
|
feedback
|
|
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. | |||
feedback
|
|
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:
If you want to install the GTK+ Clutter library:
Do not install the similarly named To use Clutter or GtkClutter in Python 3:
Note that | |||
|
feedback
|