This document provides instructions on how to set up and run this project.
Ensure you have pip3 and python3 installed by running the following commands:
pip3 -v
python3 -v- Create a Python virtual environment
python3 -m venv venv- Activate the virtual environment
source venv/bin/activate- Install the required packages
pip3 install -r requirements.txtYou can run the project from the terminal with the following command:
python main.pyTo create an exectable file that you can run without opening the IDE, first install pyinstaller:
pip3 install pyinstallerThen, use pyinstaller to create the executable:
pyinstaller --onefile --add-data 'loading.gif:.' main.py