Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ install_uv() {

if ! command -v uv >/dev/null 2>&1; then
echo "[install_deps] Installing uv with pip3..."
pip3_install --user uv
if [[ -n "${VIRTUAL_ENV:-}" ]]; then
pip3_install uv
else
pip3_install --user uv
fi
fi

if ! command -v uv >/dev/null 2>&1; then
Expand Down
Loading