Compare commits

..

2 Commits

Author SHA1 Message Date
CanbiZ
9abdff165b Merge branch 'main' of https://github.com/community-scripts/ProxmoxVED 2025-10-20 10:22:02 +02:00
CanbiZ
b508ab26b9 Update dispatcharr-install.sh 2025-10-20 10:21:56 +02:00

View File

@ -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"