1

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.

Darkgaze
  • 2,016
  • 4
  • 33
  • 56
  • Hi, You may find this package useful: https://pypi.python.org/pypi/cx_Freeze . You can take a look here too: . http://stackoverflow.com/questions/18397994/what-is-the-best-approach-with-compiling-pyside-application . Hope this helps. – NajlaBioinfo Sep 30 '16 at 08:23
  • Is there any portable pyside libraries? You need to have PySide installed also, but I can't do that either. – Darkgaze Sep 30 '16 at 08:31

1 Answers1

2

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.

Peque
  • 11,892
  • 8
  • 56
  • 94