First, create a virtual python environment
- Windows:
py -m venv .venv
- Linux & MacOS:
python3 -m venv .venv
Then, activate the it
- Windows:
./.venv/Scripts/activate
- Linux & MacOS:
source .venv/bin/activate
Install required packages
pip install -r requirements.txt
Run the program
- Windows:
py main.py
- Linux & MacOs:
python3 main.py