Spaces:
Running on Zero
Running on Zero
File size: 295 Bytes
322b245 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
if [ ! -d .venv ]; then
python3.11 -m venv .venv
fi
# shellcheck source=/dev/null
source .venv/bin/activate
python -m pip install -U pip
python -m pip install -r requirements.txt
echo "Done. Activate with: source .venv/bin/activate"
|