#!/bin/bash
VENV_DIR="venv"
if [ ! -d "$VENV_DIR" ]; then
python3 -m venv venv
. "$VENV_DIR/bin/activate"
pip install -e .
else
fi
tge $@