An executable Python app - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T00:11:05Z http://stackoverflow.com/feeds/question/2933 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2933/an-executable-python-app 26 An executable Python app Teifion 2008-08-05T22:26:00Z 2009-06-01T10:07:39Z <p>Python works on multiple platforms and can be used for desktop and web applications, thus I conclude that there is some way to compile it into an executable for Mac, Windows and Linux.</p> <p>The problem being I have no idea where to start or how to write a GUI with it, can anybody shed some light on this and point me in the right direction please?</p> http://stackoverflow.com/questions/2933/an-executable-python-app/2937#2937 57 Answer by lubos hasko for An executable Python app lubos hasko 2008-08-05T22:34:25Z 2008-09-21T11:47:22Z <p>First you will need some GUI library with Python bindings and then (if you want) some program that will convert your python scripts into standalone executables.</p> <p><strong>Cross-platform GUI libraries with Python bindings (Windows, Linux, Mac)</strong></p> <p>Of course, there are many, but the most popular that I've seen in wild are:</p> <ul> <li><a href="http://wiki.python.org/moin/TkInter" rel="nofollow">Tkinter</a> - based on <a href="http://www.tcl.tk/" rel="nofollow">Tk GUI toolkit</a> (de-facto standard GUI library for python, free for commercial projects)</li> <li><a href="http://www.wxpython.org/" rel="nofollow">WxPython</a> - based on <a href="http://www.wxwidgets.org/" rel="nofollow">WxWidgets</a> (very popular, free for commercial projects)</li> <li><a href="http://www.riverbankcomputing.co.uk/news" rel="nofollow">PyQt</a> - based on <a href="http://trolltech.com/products/qt/" rel="nofollow">Qt</a> (also very popular and more stable than WxWidgets but costly license for commercial projects)</li> </ul> <p>Complete list is at <a href="http://wiki.python.org/moin/GuiProgramming" rel="nofollow">http://wiki.python.org/moin/GuiProgramming</a></p> <p><strong>Single executable (Windows)</strong></p> <ul> <li><a href="http://www.py2exe.org/" rel="nofollow">py2exe</a> - Probably the most popular out there (<a href="#31859" rel="nofollow">there is one more</a> that is good too but can't recall its name)</li> </ul> <p><strong>Single executable (Linux)</strong></p> <ul> <li><a href="http://wiki.python.org/moin/Freeze" rel="nofollow">Freeze</a> - works the same way like py2exe but targets Linux platform</li> </ul> <p><strong>Single executable (Mac)</strong></p> <ul> <li><a href="http://svn.pythonmac.org/py2app/py2app/trunk/doc/index.html" rel="nofollow">py2app</a> - again, works like py2exe but targets Mac OS</li> </ul> http://stackoverflow.com/questions/2933/an-executable-python-app/2941#2941 3 Answer by Justin Standard for An executable Python app Justin Standard 2008-08-05T22:40:17Z 2008-08-05T22:52:16Z <p>You don't need to <em>compile</em> python for Mac/Windows/Linux. It is an interpreted language, so you simply need to have the Python interpreter installed on the system of your choice (it is available for all three platforms).</p> <p>As for a GUI library that works cross platform, Python's <a href="http://www.tcl.tk/" rel="nofollow">Tk/Tcl</a> widget library works very well, and I believe is sufficiently cross platform.</p> <p><a href="http://docs.python.org/lib/module-Tkinter.html" rel="nofollow">Tkinter</a> is the python interface to Tk/Tcl</p> <p>From the python project webpage: </p> <blockquote> <p>Tkinter is not the only GuiProgramming toolkit for Python. It is however the most commonly used one, and almost the only one that is portable between Unix, Mac and Windows</p> </blockquote> http://stackoverflow.com/questions/2933/an-executable-python-app/2980#2980 1 Answer by Matthew Schinckel for An executable Python app Matthew Schinckel 2008-08-06T00:29:36Z 2008-08-06T00:29:36Z <p>Since python is installed on nearly every non-Windows OS by default now, the only thing you really need to make sure of is that all of the non-standard libraries you use are installed.</p> <p>Having said that, it is possible to build executables that include the python interpreter, and any libraries you use. This is likely to create a large executable, however.</p> <p>MacOS X even includes support in the Xcode IDE for creating full standalone GUI apps. These can be run by any user running OS X.</p> http://stackoverflow.com/questions/2933/an-executable-python-app/12166#12166 5 Answer by Michael Twomey for An executable Python app Michael Twomey 2008-08-15T11:56:02Z 2008-08-15T11:56:02Z <p>An alternative tool to py2exe is <a href="http://pypi.python.org/pypi/bbfreeze/" rel="nofollow">bbfreeze</a> which generates executables for windows and linux. It's newer than py2exe and handles eggs quite well. I've found it magically works better without configuration for a wide variety of applications.</p> http://stackoverflow.com/questions/2933/an-executable-python-app/12167#12167 1 Answer by Brian Warshaw for An executable Python app Brian Warshaw 2008-08-15T12:00:37Z 2008-08-15T12:00:37Z <p>I'm not sure that this is the best way to do it, but when I'm deploying Ruby GUI apps (not Python, but has the same "problem" as far as .exe's are concerned) on Windows, I just write a short launcher in C# that calls on my main script. It compiles to an executable, and I then have an application executable.</p> http://stackoverflow.com/questions/2933/an-executable-python-app/14714#14714 1 Answer by Adam Lassek for An executable Python app Adam Lassek 2008-08-18T14:38:31Z 2008-08-18T14:38:31Z <p>@Brian</p> <p>Have you seen <a href="http://hackety.org/2008/06/19/stampingExesAndDmgs.html" rel="nofollow">_why's technique</a> for self-executing Shoes apps? It could probably be done with non-Shoes programs.</p> http://stackoverflow.com/questions/2933/an-executable-python-app/15938#15938 1 Answer by Paul for An executable Python app Paul 2008-08-19T09:45:44Z 2008-08-19T09:45:44Z <p>For the GUI itself:</p> <p><a href="http://wiki.python.org/moin/PyQt" rel="nofollow">PyQT</a> is pretty much the reference.</p> <p>Another way to develop a rapid user interface is to write a web app, have it run locally and display the app in the browser.</p> <p>Plus, if you go for the Tkinter option suggested by lubos hasko you may want to try portablepy to have your app run on Windows environment without Python.</p> http://stackoverflow.com/questions/2933/an-executable-python-app/31859#31859 12 Answer by Jamie for An executable Python app Jamie 2008-08-28T08:41:45Z 2008-08-28T09:19:23Z <p>Another system (not mentioned in the accepted answer yet) is PyInstaller, which worked for a PyQt project of mine when py2exe would not. I found it easier to use.</p> <p><a href="http://pyinstaller.python-hosting.com/" rel="nofollow">http://pyinstaller.python-hosting.com/</a></p> <p>Pyinstaller is based on Gordon McMillan's Python Installer. Which is no longer available.</p> http://stackoverflow.com/questions/2933/an-executable-python-app/101123#101123 1 Answer by eliben for An executable Python app eliben 2008-09-19T11:08:24Z 2009-02-20T07:25:36Z <p>While Qt's API is probably cleaner than wx, it does have the license problem. What if you want to use your code for work ? Qt doesn't allow that without the payment. Besides, the wx API is mature and works well on all platforms. The Python interface (wxPython) is well-supported and wraps the library tightly, allowing you to consult the wxWidgest documentation in your Python scripts. There's also a great book - "wxPython in action".</p> <p>I've succeessfully used wxPython in conjunction with py2exe for creating stand-alone executables that look very professional and are fast and responsive. </p> <p><strong>Edit</strong>: These days Qt is no longer GPL only, so the license problem is gone.</p> http://stackoverflow.com/questions/2933/an-executable-python-app/265570#265570 3 Answer by Tofystedeth for An executable Python app Tofystedeth 2008-11-05T15:53:19Z 2008-11-05T15:53:19Z <p>There's also <a href="http://pygtk.org/" rel="nofollow">PyGTK</a>, which is basically a Python wrapper for the Gnome Toolkit. I've found it easier to wrap my mind around than Tkinter, coming from pretty much no knowledge of GUI programming previously. It works pretty well and has some good tutorials. Unfortunately there isn't an installer for Python 2.6 for Windows yet, and may not be for a while.</p>