On Wed, Oct 22, 2003 at 09:33:11AM -0400, Shaffer, Chris wrote: > I get an error saying 'no module named glade'. My pygtk apps work fine. > What am I missing?
You're missing libglade, which is what PyGTK uses to parse glade files in runtime. Note that you need the libglade C library *and* PyGTK's libglade extension -- I don't know if you compiled PyGTK or not, but this means either recompiling PyGTK after installing libglade.so, or installing a separate package with libglade support. Take care, -- Christian Robottom Reis | http://async.com.br/~kiko/ | [+55 16] 261 2331 _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
