Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 533 Bytes

File metadata and controls

27 lines (15 loc) · 533 Bytes

Configure project

1- Clone repo with git clone

2- Open it with Qt Creator using TaskManager.pyproject

3- Accept default config, then it will open project

5- Open terminal and run:

python3 -m venv venv
source venv/bin/activate
pip install PySide6

Generate another ui file

Run this command before run project if form.ui was updated

    pyside6-uic gui/form.ui -o gui/ui_form.py
pyside6-uic gui/process.ui -o gui/ui_process_dialog.py

Run project

On terminal, use

    python3 -m gui.mainwindow