#!/bin/bash # Create a virtual environment python -m venv venv # Activate the virtual environment source venv/bin/activate # Install dependencies pip install -r requirements.txt # Run the code python src/main.py