From 01442d08ecb2fbb8d0f8ae57e4d9631a0611d108 Mon Sep 17 00:00:00 2001 From: Cam <73176206+camcop@users.noreply.github.com> Date: Wed, 26 Nov 2025 13:19:24 +0000 Subject: [PATCH] Fix Open-WebUI install and upgrade commands (#9461) --- ct/openwebui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/openwebui.sh b/ct/openwebui.sh index b2cde98bc..c3fc70aee 100644 --- a/ct/openwebui.sh +++ b/ct/openwebui.sh @@ -42,7 +42,7 @@ function update_script() { msg_info "Installing uv-based Open-WebUI" PYTHON_VERSION="3.12" setup_uv - $STD uv tool upgrade --python 3.12 open-webui[all] + $STD uv tool install --python 3.12 open-webui[all] msg_ok "Installed uv-based Open-WebUI" msg_info "Restoring data" @@ -108,7 +108,7 @@ EOF msg_info "Updating Open WebUI via uv" PYTHON_VERSION="3.12" setup_uv - $STD uv tool install --python 3.12 open-webui[all] + $STD uv tool upgrade --python 3.12 open-webui[all] systemctl restart open-webui msg_ok "Updated Open WebUI" msg_ok "Updated successfully!"