chore: adjust setup.sh for missing dependencies/tools

This commit is contained in:
OpenVelo Agent
2026-08-04 17:54:08 +00:00
parent d8310605a0
commit 9dc62aed73
+2
View File
@@ -32,6 +32,8 @@ fi
if [ -n "${PIP_BIN}" ]; then if [ -n "${PIP_BIN}" ]; then
${PIP_BIN} install --no-cache-dir --upgrade pip >/dev/null 2>&1 || true ${PIP_BIN} install --no-cache-dir --upgrade pip >/dev/null 2>&1 || true
${PIP_BIN} install --no-cache-dir --break-system-packages -r /repo/requirements.txt || \
${PIP_BIN} install --no-cache-dir -r /repo/requirements.txt
${PIP_BIN} install --no-cache-dir --break-system-packages -r /repo/requirements-dev.txt || \ ${PIP_BIN} install --no-cache-dir --break-system-packages -r /repo/requirements-dev.txt || \
${PIP_BIN} install --no-cache-dir -r /repo/requirements-dev.txt ${PIP_BIN} install --no-cache-dir -r /repo/requirements-dev.txt
fi fi