I am currently working on a python program with the use of wxpython to make out a gui application. However, i wish to compile my application to be like a standalone application where people can just get the .exe file and run it without installing python and wxpython. I am not sure if it is possible, thus i hope that someone can give me some guidance on this. Also, if it is possible, please tell me what program should i use to accomplish that. Thanks

link|improve this question
1  
possible duplicate of py2exe - generate single executable file – fortran Aug 17 '10 at 15:23
a quick search of "python executable" will give a few more duplicate matches... – fortran Aug 17 '10 at 15:24
feedback

2 Answers

You need to create a frozen binary. You can use py2exe for this purpose.

For what it's worth, if you ever need to make executables on a unix system, you can use Freeze, a utility that comes with Python.

link|improve this answer
feedback

For a nice cross-platform solution, I always recommend pyinstaller (actually, I find it better than py2exe even just for making a Windows-only executable -- it can do code signing, can seamlessly incorporate "big, hairy" libraries such as PyQt, etc;-).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.