(win32) How can i make a something i wrote in python into an easily-runable program i can distribute?

James C. Ahlstrom jim at interet.com
Mon Aug 14 15:46:13 EDT 2000


Azratax wrote:
> 
> this language isnt much good unless it can be run by users with out python.

You need to use the freeze module in Tools/freeze.  You create a
"frozen module" which contains your program plus any Python
libraries required.  Then you distribute the executable with
the frozen modules in it.  This requires a compiler.

JimA



More information about the Python-list mailing list