up vote 20 down vote favorite
6
share [g+] share [fb]

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.

link|improve this question

46% accept rate
See this similar question. – Don Kirkby Nov 2 '11 at 23:07
feedback

6 Answers

up vote 17 down vote accepted

py2exe is probably what you want, but it only works on Windows. PyInstaller works on Windows and Linux. Py2app works on the Mac.

link|improve this answer
I think cx_Freeze cx-freeze.sourceforge.net/cx_Freeze.html is a better alternative (cross platform). – Fabio Zadrozny Jan 18 at 10:56
feedback

I found this presentation to be very helpfull.

How I Distribute Python applications on Windows - py2exe & InnoSetup

From the site:

There are many deployment options for Python code. I'll share what has worked well for me on Windows, packaging command line tools and services using py2exe and InnoSetup. I'll demonstrate a simple build script which creates windows binaries and an InnoSetup installer in one step. In addition, I'll go over common errors which come up when using py2exe and hints on troubleshooting them. This is a short talk, so there will be a follow-up Open Space session to share experience and help each other solve distribution problems.

link|improve this answer
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.

link|improve this answer
feedback

See: An executable Python app

link|improve this answer
feedback

py2exe

link|improve this answer
feedback

See a short list of python packaging tools on FreeHackers.org.

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.