Hello, two days ago I asked what I needed to get libglade2 working on Win32. I took me some time to get all the pieces together, so here is a short overview if somebody else is interested:
1. Get Python 2.2.1 2. From http://www.gimp.org/~tml/gimp/win32/downloads.html get the following packages: libiconv-1.7.zip libintl-0.10.40-20020310.zip glib-2.0.4-20020703.zip gtk+-2.0.3-20020530.zip atk-1.0.1-20020518.zip pango-1.0.2-20020530.zip 3. Unpack the above packages in a common directory, e.g. C:\Programm Files\Common Files\GTK\2.0\ (from now on called %gtkdir%) 4. Add %gtkdir%\lib and %gtkdir%\bin to your PATH. (Add the following line to your C:\AUTOEXEC.BAT (if you are using a DOS-based Windows version (W95,W98,ME) Don't asked me about the others.)) set PATH="%PATH%;%gtkdir%\lib;%gtkdir%\bin" (You need to substitute %gtkdir% with your actual directory of course.) 5. Reboot. 6. From http://www.pcpm.ucl.ac.be/~gustin/win32_ports/beta/ get the following packages: PyGtk-1.99.11-libglade.win32.exe libglade-dlls.zip 7. Install PyGtk-1.99.11-libglade.win32.exe. 8. Extract libglade-dlls.zip into %gtkdir%\lib 9. Start a Python interpreter and type "import gtk.glade" 10. Don't get an error message. 11. You're done. Hope this helps someone, Lars -- Money can't buy happiness, but it can make you awfully comfortable while you're being miserable. -- C.B. Luce _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
