Estoy utilizando python 2.3 con el m�dulo pygtk-2.0.0 para python 2.3. Las
librer�as runtime de gtk que estoy utilizando es la versi�n 2.2.4. El sistema
operativo que estoy utilizando es win98se y win2k. Cuando ejecuto los ejemplos
del tutorial que hay en la p�gina http://www.moeraki.com me encuentro con el
siguiente mensaje de error:

Traceback (most recent call last):
  File "C:\Documents and Settings\jose reina\My Documents\base.py", line 5, in ?
    import gtk
  File "D:\Python23\lib\site-packages\gtk-2.0\gtk\__init__.py", line 39, in ?
    import gobject as _gobject
ImportError: DLL load failed: The specified module could not be found.


El c�digo fuente de este ejemplo en concreto es el siguiente:

#!/usr/bin/env python

# example base.py

import gtk

class Base:
    def __init__(self):
        self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
        self.window.show()

    def main(self):
        gtk.main()

print __name__
if __name__ == "__main__":
    base = Base()
    base.main()


Me gustar�a saber cual es el problema de este tipo de error. Muchas gracias.


_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to