/python-pyside6-hello

A minimal "hello-world" application to start code with Qt for Python (PySide6)

Primary LanguagePythonMIT LicenseMIT

python-pyside6-hello

A minimal "hello-world" application to start code with Qt for Python

screenshot

Install dependencies

Activate venv

Using Python 3.6+ and venv library create a virtual environment.

python3 -m venv env

Activate the venv. Use next for Linux and macOS

source env/bin/activate 

This for Windows

env\Scripts\activate.bat

Install packages

Install PySide package via requirements file

pip install -f requirements.txt

Run

Run an applicalion

python3 main.py

Useful links