PyGTK for Windows


                                参考:http://faq.pygtk.org/index.py?req=show&file=faq21.001.htp
1. 安装Python
到 http://www.python.org/download/
下载 python for windows的版本
Python 2.5.2 安装
2. 安装GTK runtime环境
到gladewin32.sourceforge.net下载,安装
gtk-2.10.11-win32-1
gtk-dev-2.10.11-win32-1
glade-3-0-2-win32-1
3. 安装PyGTK,到
http://pygtk.org/downloads.html下载
PyCairo, PyGobject and PyGTK 安装
4. 运行demo
   import gtk
  window = gtk.Window()
  window.set_title("PyGTK Test Window")
  window.show_all()
  gtk.main()