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
-
1possible duplicate of py2exe - generate single executable filefortran– fortran2010-08-17 15:23:32 +00:00Commented Aug 17, 2010 at 15:23
-
a quick search of "python executable" will give a few more duplicate matches...fortran– fortran2010-08-17 15:24:40 +00:00Commented Aug 17, 2010 at 15:24
Add a comment
|
2 Answers
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;-).