Use python3.12 in start.sh venv creation

This commit is contained in:
Jon
2026-06-03 00:53:53 +01:00
parent 11e799188d
commit 407a0c15e1

View File

@@ -5,7 +5,7 @@ cd "$(dirname "$0")"
if [ ! -d ".venv" ]; then
echo "Creating virtualenv..."
python3 -m venv .venv
python3.12 -m venv .venv
.venv/bin/pip install -q -r requirements.txt
fi