begin work on actually getting installing working

This commit is contained in:
2026-06-19 20:52:56 +10:00
parent 6abdf5b698
commit fd40024816
11 changed files with 226 additions and 0 deletions

14
install_local.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
VENV_DIR="venv"
if [ -d "$VENV_DIR" ]; then
source "$VENV_DIR/bin/activate"
else
python3 -m venv venv
source "$VENV_DIR/bin/activate"
fi
pip install --upgrade pip
pip install -r requirements.txt
python setup.py sdist || { echo "setup.py failed!"; exit 1; }
pip install . || { echo "pip install failed!"; exit 1; }