some fixes

This commit is contained in:
CanbiZ 2025-06-04 13:16:48 +02:00
parent 00fe49156d
commit 3b9160a1aa
5 changed files with 5 additions and 6 deletions

View File

@ -22,7 +22,7 @@ $STD unzip bazarr -d /opt/bazarr
chmod 775 /opt/bazarr /var/lib/bazarr/ chmod 775 /opt/bazarr /var/lib/bazarr/
cd /opt/bazarr cd /opt/bazarr
$STD uv venv /opt/bazarr/.venv $STD uv venv /opt/bazarr/.venv
$STD /opt/bazarr/.venv/bin/uv pip install -r requirements.txt $STD uv pip install -r requirements.txt
msg_ok "Installed Bazarr" msg_ok "Installed Bazarr"
msg_info "Creating Service" msg_info "Creating Service"

View File

@ -32,7 +32,7 @@ mkdir -p /opt/calibre-web
$STD curl -fsSL https://github.com/janeczku/calibre-web/raw/master/library/metadata.db -o /opt/calibre-web/metadata.db $STD curl -fsSL https://github.com/janeczku/calibre-web/raw/master/library/metadata.db -o /opt/calibre-web/metadata.db
cd /opt/calibre-web cd /opt/calibre-web
$STD uv venv /opt/calibre-web/.venv $STD uv venv /opt/calibre-web/.venv
$STD /opt/calibre-web/.venv/bin/uv pip install calibreweb jsonschema $STD uv pip install calibreweb jsonschema
msg_ok "Installed Calibre-Web" msg_ok "Installed Calibre-Web"
msg_info "Creating Service" msg_info "Creating Service"

View File

@ -50,7 +50,7 @@ msg_info "Installing Change Detection"
mkdir -p /opt/changedetection mkdir -p /opt/changedetection
cd /opt/changedetection cd /opt/changedetection
$STD uv venv /opt/changedetection/.venv $STD uv venv /opt/changedetection/.venv
$STD /opt/changedetection/.venv/bin/uv pip install changedetection.io $STD uv pip install changedetection.io
msg_ok "Installed Change Detection" msg_ok "Installed Change Detection"
msg_info "Installing Browserless & Playwright" msg_info "Installing Browserless & Playwright"

View File

@ -49,9 +49,8 @@ cd /opt/crafty-controller/crafty
$STD uv venv /opt/crafty-controller/crafty/.venv $STD uv venv /opt/crafty-controller/crafty/.venv
chown -R crafty:crafty /opt/crafty-controller/ chown -R crafty:crafty /opt/crafty-controller/
$STD sudo -u crafty bash -c ' $STD sudo -u crafty bash -c '
source /opt/crafty-controller/crafty/.venv/bin/activate
cd /opt/crafty-controller/crafty/crafty-4 cd /opt/crafty-controller/crafty/crafty-4
/opt/crafty-controller/crafty/.venv/bin/uv pip install --no-cache-dir -r requirements.txt uv pip install --no-cache-dir -r requirements.txt
' '
msg_ok "Installed Craft-Controller and dependencies" msg_ok "Installed Craft-Controller and dependencies"

View File

@ -22,7 +22,7 @@ PYTHON_VERSION="3.12" setup_uv
msg_info "Installing Deluge" msg_info "Installing Deluge"
mkdir -p /opt/deluge mkdir -p /opt/deluge
$STD uv venv /opt/deluge/.venv $STD uv venv /opt/deluge/.venv
$STD /opt/deluge/.venv/bin/uv pip install deluge[all] $STD uv pip install deluge[all]
msg_ok "Installed Deluge" msg_ok "Installed Deluge"
msg_info "Creating Service" msg_info "Creating Service"