Re: [python-uk] embedding python ImportError: libpyglib PyExc_ImportError

2010-10-29 Thread oly
BODY { font-family:Arial, Helvetica, sans-serif;font-size:12px; }This is the result of searching for that library, also i dont get the error when running python normally only when its embeded, so something must be different when you embed for the error to only occur when when running code in the

[python-uk] PyCon co-presenter sought for OpenGL talk

2010-10-29 Thread Jonathan Hartley
Hey folks, I'm searching for a co-presenter for a talk I've proposed at PyCon (Atlanta 2011). The title is 'Algorithmically Generated OpenGL Geometry', and it's currently envisioned as an improved version of a talk I already gave at EuroPython under the title 'Hobbyist OpenGL : Flying High'

Re: [python-uk] embedding python ImportError: libpyglib PyExc_ImportError

2010-10-29 Thread Jamie Kirkpatrick
Well, do you have that library on your system? The problem is that you are loading a Python module that uses a C extension module under the hood so your python runtime is looking to load in that library as you import that module but its not finding it. How have you "installed" the gtk module so y