What is the best way to make an .exe file from a python program - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T22:42:33Zhttp://stackoverflow.com/feeds/question/49146http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/49146/what-is-the-best-way-to-make-an-exe-file-from-a-python-program6What is the best way to make an .exe file from a python programminty2008-09-08T03:59:57Z2008-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#491501Answer by Nick Stinemates for What is the best way to make an .exe file from a python programNick Stinemates2008-09-08T04:01:23Z2008-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#491557Answer by Josh Segall for What is the best way to make an .exe file from a python programJosh Segall2008-09-08T04:10:45Z2008-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#491572Answer by lubos hasko for What is the best way to make an .exe file from a python programlubos hasko2008-09-08T04:11:40Z2008-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#491791Answer by kender for What is the best way to make an .exe file from a python programkender2008-09-08T04:50:01Z2008-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>