diff --git a/install/deluge-install.sh b/install/deluge-install.sh index ab93e49fd..c75f34202 100644 --- a/install/deluge-install.sh +++ b/install/deluge-install.sh @@ -23,7 +23,9 @@ msg_info "Installing Deluge" mkdir -p /opt/deluge cd /opt/deluge $STD uv venv /opt/deluge/.venv -$STD uv pip install "deluge[all]" libtorrent +$STD /opt/prometheus-pve-exporter/.venv/bin/python -m ensurepip --upgrade +$STD /opt/prometheus-pve-exporter/.venv/bin/python -m pip install --upgrade pip +$STD /opt/prometheus-pve-exporter/.venv/bin/python -m pip install deluge libtorrent msg_ok "Installed Deluge" msg_info "Creating Service" @@ -58,7 +60,8 @@ ExecStart=/opt/deluge/.venv/bin/deluge-web -d Restart=on-failure [Install] -WantedBy=multi-u +WantedBy=multi-user.target +EOF systemctl enable --now -q deluged.service systemctl enable --now -q deluge-web.service diff --git a/install/documenso-install.sh b/install/documenso-install.sh index 47e8d7093..a16ad88ad 100644 --- a/install/documenso-install.sh +++ b/install/documenso-install.sh @@ -55,7 +55,9 @@ $STD unzip v${RELEASE}.zip mv documenso-${RELEASE} /opt/documenso cd /opt/documenso $STD uv venv /opt/documenso/.venv -$STD uv pip install bcrypt +$STD /opt/documenso/.venv/bin/python -m ensurepip --upgrade +$STD /opt/documenso/.venv/bin/python -m pip install --upgrade pip +$STD /opt/documenso/.venv/bin/python -m pip install bcrypt mv .env.example /opt/documenso/.env sed -i \ -e "s|^NEXTAUTH_SECRET=.*|NEXTAUTH_SECRET='$(openssl rand -base64 32 | tr -dc 'a-zA-Z0-9' | cut -c1-32)'|" \ diff --git a/install/esphome-install.sh b/install/esphome-install.sh index edd31a10e..8e8e022c5 100644 --- a/install/esphome-install.sh +++ b/install/esphome-install.sh @@ -24,7 +24,9 @@ mkdir -p /opt/esphome mkdir -p /root/config cd /opt/esphome $STD uv venv /opt/esphome/.venv -$STD uv pip install esphome tornado esptool +$STD /opt/esphome/.venv/bin/python -m ensurepip --upgrade +$STD /opt/esphome/.venv/bin/python -m pip install --upgrade pip +$STD /opt/esphome/.venv/bin/python -m pip install esphome tornado esptool msg_ok "Setup and Installed ESPHome" msg_info "Creating Service"