0

Is there any way to "simply" install PySide 2 on Windows 10?
If not are there tutorials for installing it?

Can I export a PySide 2 project to an .exe file?

w3spi
  • 4,380
  • 9
  • 47
  • 80
Seref
  • 123
  • 1
  • 2
  • 5

3 Answers3

3

If you are using a somewhat recent version of Python 3, you can now also do

pip install PySide2
Michael Herrmann
  • 4,832
  • 3
  • 38
  • 53
2

It's possible to easily install Pyside2 on Windows using conda.

# Enable conda-forge
conda config --add channels conda-forge
# Install PySide2
conda install pyside2

For more instructions, see this link

You can freeze your Python programs into standalone executables using Pyinstaller.

Loïc G.
  • 3,087
  • 3
  • 24
  • 36
1

Since recently, 'wheels' (for Windows, Linux, OS X) are available at http://download.qt.io/snapshots/ci/pyside/

Here you can read how to install whl files: How do I install a Python package with a .whl file?

At the moment of writing this response, PySide2 seems to be still under development, not yet completely production ready. Hopefully will be soon, we all are looking forward to it.