I've used several modules to make EXEs for Python, but I'm not sure if I'm doing it right.
How should I go about this, and why? Please base your answers on personal experience, and provide references where necessary.
|
I've used several modules to make EXEs for Python, but I'm not sure if I'm doing it right. How should I go about this, and why? Please base your answers on personal experience, and provide references where necessary.
| ||||
feedback
|
|
py2exe is probably what you want, but it only works on Windows. PyInstaller works on Windows and Linux. Py2app works on the Mac. | |||
feedback
|
|
I found this presentation to be very helpfull. How I Distribute Python applications on Windows - py2exe & InnoSetup From the site:
| ||||
|
feedback
|
|
Not on the freehackers list is gui2exe which can be used to build standalone Windows executables, Linux applications and Mac OS application bundles and plugins starting from Python scripts. | |||
|
feedback
|
|
| |||
|
feedback
|
|
See a short list of python packaging tools on FreeHackers.org. | |||
|
feedback
|