From c48cad70e7162d5cd30954537b25b303edf35432 Mon Sep 17 00:00:00 2001 From: Roberts Slisans Date: Sun, 21 May 2023 21:18:32 +0300 Subject: [PATCH] fix missing updates to main UI package --- webui.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/webui.py b/webui.py index 8a70367..88cb923 100644 --- a/webui.py +++ b/webui.py @@ -64,6 +64,14 @@ def install_dependencies(): def update_dependencies(): + # Update the webui dependencies + os.chdir("tts-generation-webui") + run_cmd("git pull") + + run_cmd("pip install -r requirements.txt") + + os.chdir(script_dir) + os.chdir("tts-generation-webui/models/bark") run_cmd("git pull")