fix deluge openssl errors

This commit is contained in:
Sam Heinz
2026-06-27 20:13:49 +10:00
parent 8b99d3b1cc
commit bc94001ff9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ function update_script() {
msg_info "Updating Deluge"
ensure_dependencies python3-setuptools
$STD apt update
$STD pip3 install deluge[all] --upgrade
$STD pip3 install deluge[all] "pyopenssl<25" --upgrade
msg_ok "Updated Deluge"
msg_ok "Updated successfully!"
exit
+1 -1
View File
@@ -26,7 +26,7 @@ cat >~/.config/pip/pip.conf <<EOF
[global]
break-system-packages = true
EOF
$STD pip install deluge[all]
$STD pip install deluge[all] "pyopenssl<25"
msg_ok "Installed Deluge"
msg_info "Creating Service"