
-----------------------------------
neufelni
Fri Mar 24, 2006 12:11 pm

Python exe
-----------------------------------
I am learning Python right now and I am wondering how to make my program an exe file. I have several Python tutorials and I have not found how to do this in any of them so any help would be appreciated.

-----------------------------------
person
Fri Mar 24, 2006 12:40 pm


-----------------------------------
http://www.py2exe.org/

-----------------------------------
neufelni
Fri Mar 24, 2006 3:07 pm


-----------------------------------
Thanks alot for the help.

-----------------------------------
Hikaru79
Fri Mar 24, 2006 6:36 pm


-----------------------------------
py2exe will do what you want; however, it is not REALLY making an executable of your code; its simply bundling a barebones python distribution with your script. 

You can, for example, use the still-experimental [url=http://ironpython.com/]IronPython to 'compile' the script to bytecode that will run on .NET or Mono. It is actually much faster this way too!
