Python Forum
required packages for GUI in Python - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: required packages for GUI in Python (/thread-15315.html)



required packages for GUI in Python - Skaperen - Jan-12-2019

while looking through google for tutorials to learn GUI for Python, i saw mentioned some packages the need to be installed. my question is this: are any packages needed when the end user runs a GUI app developed in Python? for command line, the basic need (Python itself) is required unless the app has further needs. do GUI apps in Python have this further need? how much of GUI needs are included with typical major OSes and distributions (most already include Python and some even depend on it).


RE: required packages for GUI in Python - Larz60+ - Jan-12-2019

the answer is yes and no.
No if you use built in tkinter (usually, although some distributions of python don't come with tkinter)
wxpython, Qt5 and other GUI's require installation.


RE: required packages for GUI in Python - Skaperen - Jan-13-2019

i think i need to use gtk. i want to create some things that work with the xfce4 panel.