This guide will walk you through setting up and running the project on your local machine.
First, clone the repository to your local machine using Git:
git clone https://github.com/Pixelguy14/UI_AG_python
cd UI_AG_pythonAlternatively, you can download the source code as a ZIP file from the repository page.
It's best practice to use a virtual environment to keep project dependencies isolated.
Create the virtual environment:
python3 -m venv env_AGNow, activate it. The command varies based on your operating system:
source env_AG/bin/activateIn Command Prompt:
env_AG\Scripts\activate.batIn PowerShell:
env_AG\Scripts\Activate.ps1With the virtual environment active, install the necessary packages:
pip install -r src/requirements.txtYou can now launch the application:
python main.py