Skip to content

How to download

DDPeev21 edited this page Jan 20, 2024 · 3 revisions

Welcome to the Installation page!

Here you can learn a bit more about how you can install and run our projcet!

📋Synopsis

The installation process is different for different OSs

Windows Set-Up

Requirements

Python

Python

Pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

To run our python scripts you will need some additional libraries

PyQt6 for loading ui files

pip install PyQt6

mysql.connector for database connection

pip install mysql-connector-python

Win10Toast for windows 10 notifications

pip install win10toast

Important step is to specify the path to python in mainwindow.cpp and login.cpp

Example process.start("C:/Users/user/AppData/Local/Programs/Python/Python312/python.exe"

Download the release of our page and run the execution file

macOS Installation

Requirements

Python

Python

Pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

To run our python scripts you will need some additional libraries

PyQt6 for loading ui files

pip install PyQt6

mysql.connector for database connection

pip install mysql-connector-python

Important step is to specify the path to python in mainwindow.cpp and login.cpp

Example process.start("/usr/local/bin/python3.12"

Download the release of our page and run the execution file