Darkgaze
Darkgaze

Reputation: 2573

Portable PySide libraries?

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

Answers (1)

Peque
Peque

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.

Upvotes: 2

Related Questions