Python exe
Author |
Message |
neufelni
|
Posted: 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. |
|
|
|
|
|
Sponsor Sponsor
|
|
|
person
|
|
|
|
|
neufelni
|
Posted: Fri Mar 24, 2006 3:07 pm Post subject: (No subject) |
|
|
Thanks alot for the help. |
|
|
|
|
|
Hikaru79
|
Posted: Fri Mar 24, 2006 6:36 pm Post subject: (No 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! |
|
|
|
|
|
|
|