From b508ab26b9fd09b606d7b26cd310c8d33875f8be Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 20 Oct 2025 10:21:56 +0200 Subject: [PATCH] Update dispatcharr-install.sh --- install/dispatcharr-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install/dispatcharr-install.sh b/install/dispatcharr-install.sh index 1079dbfb..3d53e916 100644 --- a/install/dispatcharr-install.sh +++ b/install/dispatcharr-install.sh @@ -64,9 +64,10 @@ for u in "${EXTRA_INDEX_URLS[@]}"; do [[ -n "$u" && "$u" != "$PYPI_URL" ]] && UV_INDEX_ARGS+=(--extra-index-url "$u") done if [[ -f requirements.txt ]]; then - $STD uv pip install "${UV_INDEX_ARGS[@]}" -r requirements.txt + $STD /opt/dispatcharr/env/bin/python -m pip install --upgrade pip setuptools wheel + $STD /opt/dispatcharr/env/bin/pip install "${UV_INDEX_ARGS[@]}" -r requirements.txt fi -$STD uv pip install "${UV_INDEX_ARGS[@]}" gunicorn gevent celery daphne +$STD /opt/dispatcharr/env/bin/pip install "${UV_INDEX_ARGS[@]}" gunicorn gevent celery daphne ln -sf /usr/bin/ffmpeg /opt/dispatcharr/env/bin/ffmpeg msg_ok "Python Requirements Installed"