I found this question on 
http://faq.pygtk.org/index.py?file=faq21.005.htp&req=show
but the answer did not help me.

For example I have a simple program below that I would like to
'compile' with pyInstaller (or please direct me to another project if
it's simpler) to run in windows as a single bundled executable file/
folder with no installation (no INNO setup), and no requirements for
gtk or python installations. I doesn't matter if the file/folder is 30
MB to only display a hello world app, as long as it works. (although
the smaller the better)

The application works in my windows test environment where I have
installed python 2.6 with pygtk and a gtk bundle.

Can someone please provide some simple and clear instructions on how I
can do this?

Thanks

simple.py:

import gtk
window = gtk.Window()
window.set_title("PyGTK Test Window")
window.connect("destroy", gtk.main_quit)
window.show_all()
gtk.main()

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyinstaller?hl=en.

Reply via email to