What is the best way to make an .exe file from a python program - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T22:42:33Z http://stackoverflow.com/feeds/question/49146 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49146/what-is-the-best-way-to-make-an-exe-file-from-a-python-program 6 What is the best way to make an .exe file from a python program minty 2008-09-08T03:59:57Z 2008-09-08T04:50:01Z <p>I've used several modules to make .exe's for python which options/library is best? It has been some tome since i've done this and I'm curious if there are any new options etc.</p> http://stackoverflow.com/questions/49146/what-is-the-best-way-to-make-an-exe-file-from-a-python-program/49150#49150 1 Answer by Nick Stinemates for What is the best way to make an .exe file from a python program Nick Stinemates 2008-09-08T04:01:23Z 2008-09-08T04:01:23Z <p><a href="http://www.py2exe.org/" rel="nofollow">py2exe</a></p> http://stackoverflow.com/questions/49146/what-is-the-best-way-to-make-an-exe-file-from-a-python-program/49155#49155 7 Answer by Josh Segall for What is the best way to make an .exe file from a python program Josh Segall 2008-09-08T04:10:45Z 2008-09-08T04:10:45Z <p><a href="http://www.py2exe.org/" rel="nofollow">py2exe</a> is probably what you want, but it only works on Windows. <a href="http://pyinstaller.python-hosting.com/" rel="nofollow">PyInstaller</a> works on Windows and Linux. <a href="http://pypi.python.org/pypi/py2app/" rel="nofollow">Py2app</a> works on the Mac.</p> http://stackoverflow.com/questions/49146/what-is-the-best-way-to-make-an-exe-file-from-a-python-program/49157#49157 2 Answer by lubos hasko for What is the best way to make an .exe file from a python program lubos hasko 2008-09-08T04:11:40Z 2008-09-08T04:11:40Z <p>See: <a href="http://beta.stackoverflow.com/questions/2933/an-executable-python-app" rel="nofollow"><strong>An executable Python app</strong></a></p> http://stackoverflow.com/questions/49146/what-is-the-best-way-to-make-an-exe-file-from-a-python-program/49179#49179 1 Answer by kender for What is the best way to make an .exe file from a python program kender 2008-09-08T04:50:01Z 2008-09-08T04:50:01Z <p>See a short list of python packaging tools on <a href="http://www.freehackers.org/Packaging_a_python_program" rel="nofollow">FreeHackers.org</a>.</p>