Computer Science Canada

Python exe

Author:  neufelni [ Fri Mar 24, 2006 12:11 pm ]
Post subject:  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.

Author:  person [ Fri Mar 24, 2006 12:40 pm ]
Post subject: 

http://www.py2exe.org/

Author:  neufelni [ Fri Mar 24, 2006 3:07 pm ]
Post subject: 

Thanks alot for the help.

Author:  Hikaru79 [ Fri Mar 24, 2006 6:36 pm ]
Post subject: 

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 IronPython to 'compile' the script to bytecode that will run on .NET or Mono. It is actually much faster this way too!


: