My 2cent tips & tricks on computer technology & Application Virtualization ...
Sunday, December 14, 2008
TIPS: Python: How to convert python script to executable
Python script can be converted in a standalone executable using one of the exe builder like * py2exe (Windows) * py2app (Mac OS) * PyInstaller (all platforms) * cx_Freeze (Windows and Linux) * bbFreeze (Windows and Linux)
2 comments:
http://www.voidspace.org.uk/python/weblog/arch_d7_2008_12_06.shtml#e1038
Apparently, you don't even need them in Python 2.6 and 3!
@Jason, with your solution, Python have to be installed in the target system and that isn't the idea.
Post a Comment