Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python GUI Library for Windows/Gnome

I need to create a desktop app that will work with Windows and Gnome(Ubuntu). I would like to use Python to do this. The GUI part of the app will be a single form with a message area and a couple of buttons.

The list of GUI's for Python seems overwhelming. I am looking for something simple if possible, the main requirements is it must work with Gnome(2.26 and up) and Windows XP/Vista/7.

like image 201
sonomax Avatar asked Dec 22 '22 08:12

sonomax


2 Answers

You might want to check out wxPython. It's a mature project and should work on Windows and Linux (Gnome).

like image 134
Etienne Avatar answered Jan 01 '23 19:01

Etienne


PyGTK is a very popular GUI toolkit, but usually quite a bit easier to use on Linux than on Windows.

like image 29
Walter Avatar answered Jan 01 '23 20:01

Walter