Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
fix missing updates to main UI package
Browse files Browse the repository at this point in the history
  • Loading branch information
rsxdalv committed May 21, 2023
1 parent eaa8389 commit c48cad7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit c48cad7

Please sign in to comment.