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?
If you are using a somewhat recent version of Python 3, you can now also do
pip install PySide2
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.
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.