Before you start creating applications with PySide6 you will need to have a working installation on your system. If you don't have either set up yet, the following steps will guide you through how to do this on Ubuntu Linux.
This guide is also available for macOS and Windows.
Install PySide6 on Ubuntu Linux
The simplest way to install PySide6 on Linux is to use Python's pip
packaging tool, just as for other packages.
For Python3 installations this is usually called pip3
.
pip3 install pyside6
After install is finished, you should be able to run python
(or python3
) and import PySide6
without errors.
Python 3.7.6
Type "help", "copyright", "credits" or "license" for more information.
>>> import PySide6
>>>
You can now start creating Python GUI applications with PySide6.
Packaging Python Applications with PyInstaller by Martin Fitzpatrick — This step-by-step guide walks you through packaging your own Python applications from simple examples to complete installers and signed executables.