Compare commits

...

2 Commits

Author SHA1 Message Date
CanbiZ (MickLesk)
80827210f8 Ensure dependencies before updating Deluge 2026-02-12 13:16:52 +01:00
CanbiZ (MickLesk)
a09a1915fc fix(deluge): add python3-setuptools for pkg_resources on Python 3.13 2026-02-12 13:13:14 +01:00
2 changed files with 3 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ function update_script() {
exit
fi
msg_info "Updating Deluge"
ensure_dependencies python3-setuptools
$STD apt update
$STD pip3 install deluge[all] --upgrade
msg_ok "Updated Deluge"

View File

@@ -16,7 +16,8 @@ update_os
msg_info "Installing Dependencies"
$STD apt install -y \
python3-pip \
python3-libtorrent
python3-libtorrent \
python3-setuptools
msg_ok "Installed Dependencies"
msg_info "Installing Deluge"