This commit is contained in:
MickLesk 2026-02-22 18:51:02 +01:00
parent ce9eb9a2c2
commit 1724db77ec
2 changed files with 6 additions and 2 deletions

View File

@ -49,7 +49,9 @@ function update_script() {
msg_info "Installing Python Dependencies" msg_info "Installing Python Dependencies"
cd /opt/profilarr/backend cd /opt/profilarr/backend
$STD uv venv /opt/profilarr/backend/.venv $STD uv venv /opt/profilarr/backend/.venv
$STD uv pip install --python /opt/profilarr/backend/.venv/bin/python -r requirements.txt sed 's/==/>=/g' requirements.txt >requirements-relaxed.txt
$STD uv pip install --python /opt/profilarr/backend/.venv/bin/python -r requirements-relaxed.txt
rm -f requirements-relaxed.txt
msg_ok "Installed Python Dependencies" msg_ok "Installed Python Dependencies"
msg_info "Building Frontend" msg_info "Building Frontend"

View File

@ -35,7 +35,9 @@ fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr"
msg_info "Installing Python Dependencies" msg_info "Installing Python Dependencies"
cd /opt/profilarr/backend cd /opt/profilarr/backend
$STD uv venv /opt/profilarr/backend/.venv $STD uv venv /opt/profilarr/backend/.venv
$STD uv pip install --python /opt/profilarr/backend/.venv/bin/python -r requirements.txt sed 's/==/>=/g' requirements.txt >requirements-relaxed.txt
$STD uv pip install --python /opt/profilarr/backend/.venv/bin/python -r requirements-relaxed.txt
rm -f requirements-relaxed.txt
msg_ok "Installed Python Dependencies" msg_ok "Installed Python Dependencies"
msg_info "Building Frontend" msg_info "Building Frontend"