Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

Commit 5468446

Browse files
authored
fix turtoise-tts -> tortoise path
1 parent a7299b0 commit 5468446

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def install_dependencies():
5353
# Clone webui to our computer
5454
run_cmd("git clone https://github.com/rsxdalv/tts-generation-webui.git")
5555
run_cmd("git clone https://github.com/rsxdalv/bark.git tts-generation-webui/models/bark")
56-
run_cmd("git clone https://github.com/rsxdalv/tortoise-tts.git tts-generation-webui/models/turtoise-tts")
56+
run_cmd("git clone https://github.com/rsxdalv/tortoise-tts.git tts-generation-webui/models/tortoise")
5757
run_cmd("pip install python-dotenv")
5858
run_cmd("pip install gradio")
5959
run_cmd("pip install soundfile") # torchaudio platform windows
@@ -71,7 +71,7 @@ def update_dependencies():
7171
run_cmd("python -m pip install .")
7272
os.chdir(script_dir)
7373

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

7777
# Installs/Updates dependencies from all requirements.txt

0 commit comments

Comments
 (0)