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

Commit

Permalink
fix turtoise-tts -> tortoise path
Browse files Browse the repository at this point in the history
  • Loading branch information
rsxdalv committed May 2, 2023
1 parent a7299b0 commit 5468446
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def install_dependencies():
# Clone webui to our computer
run_cmd("git clone https://github.com/rsxdalv/tts-generation-webui.git")
run_cmd("git clone https://github.com/rsxdalv/bark.git tts-generation-webui/models/bark")
run_cmd("git clone https://github.com/rsxdalv/tortoise-tts.git tts-generation-webui/models/turtoise-tts")
run_cmd("git clone https://github.com/rsxdalv/tortoise-tts.git tts-generation-webui/models/tortoise")
run_cmd("pip install python-dotenv")
run_cmd("pip install gradio")
run_cmd("pip install soundfile") # torchaudio platform windows
Expand All @@ -71,7 +71,7 @@ def update_dependencies():
run_cmd("python -m pip install .")
os.chdir(script_dir)

os.chdir("tts-generation-webui/models/turtoise-tts")
os.chdir("tts-generation-webui/models/tortoise")
run_cmd("git pull")

# Installs/Updates dependencies from all requirements.txt
Expand Down

0 comments on commit 5468446

Please sign in to comment.