pythonuser-interfacedeploymenttkinterrelease-management

Create a directly-executable cross-platform GUI app using Python


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.

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?


Solution

  • 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.

    Cross-platform GUI libraries with Python bindings (Windows, Linux, Mac)

    Of course, there are many, but the most popular that I've seen in wild are:

    Note that users of WxWidgets (hence WxPython users), often need to use WxQt as well, because WxWidgets's own GUI is not yet at Qt's level (at time of writting).

    Complete list is at http://wiki.python.org/moin/GuiProgramming

    Stand-alone/ single executables

    For all platforms:

    For Windows:

    For Linux:

    For MacOS: