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

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