Reputation: 2573
Is there any way to execute python with pyside on a computer that has only python installed?
I need to distribute a simple tool on a lot of computers and we can't install pyside everywhere.
Upvotes: 1
Views: 293
Reputation: 14811
PySide is a set of bindings for Qt, which is a library written in C++. And it is not part of the Python core.
If you want a GUI that is portable and that can be used with a default Python installation, consider tkinter.
tkinter
Upvotes: 2