Spaces:
Sleeping
Sleeping
File size: 441 Bytes
718bbf0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/bash
set -e
# --- Install uv ---
# Ensure pip is up-to-date in the isolated build environment
python -m pip install --upgrade pip
# Install uv (it's best to install it globally for the builder, or into a temporary path)
# A simple pip install works well in the build environment
pip install uv
uv venv
source .venv/bin/activate
echo "Installing dependencies with uv..."
uv sync --no-dev
echo "Dependency installation complete."
|