Search code examples
pythonpython-3.xpython-2.7gtk

Universal Cross-platform GUI for Python Scripts?


Is there a way to create a GUI for Python scripts that works on Mac, Windows and Linux?

There surely must be a universal way.

Anyone having an Idea? What about GTK? Any good alternative?


Solution

  • The default way to make GUI applications with python is using the tkinter module https://docs.python.org/3/library/tkinter.html#module-tkinter

    If however tkinter does not meet your needs, there are several non-standard libraries which can be found here https://docs.python.org/3/faq/gui.html