+ 1
Is Pyqt or Tkinter better for Gui?
5 Answers
+ 2
Each have their advantages â Tkinter is simpler, and included with Python by default, but is limited when creating large and more complex applications. PyQt has more advanced features (multimedia, vector graphics, web browser, model-view widgets) and needs to be installed/packaged when distributing your applications.
If you plan to build complex applications I'd suggest you start with PyQt5 / Qt for Python (Pyside2). If you're just wanting to stick a little UI on a command line script, Tkinter is more than enough.
I use PyQt5 almost exclusively myself â here are some example applications I've made https://www.learnpyqt.com/apps/ for inspiration.
+ 1
That second "is" distracts me...
If you work on Linux you probably want to go with pyqt. But i guess it doesn't work on windows, so for compatibility reasons you want to go with Tkinter
0
Is there any difference between them.?Which one is more comfortable for a Gui developer?
0
You can think of it like different languages. They basically are different in the way you create stuff.
Qt is mainly developed on Linux and offers Hardware acceleration afai. But I can't tell you which is more comfortable, because i haven't used them yet.
0
Thanks for your time Loeschzwerg