From b02dc4dc0d9a2ec8003e4d2fe5993e64088278bf Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Mon, 20 Nov 2023 19:02:12 -0800 Subject: [PATCH] Add --no-dependencies to TTS installation command --- extensions/coqui_tts/script.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/coqui_tts/script.py b/extensions/coqui_tts/script.py index 81e85117..110e8b39 100644 --- a/extensions/coqui_tts/script.py +++ b/extensions/coqui_tts/script.py @@ -18,8 +18,8 @@ except ModuleNotFoundError: logger.error( "Could not find the TTS module. Make sure to install the requirements for the coqui_tts extension." "\n" - "\nLinux / Mac:\npip install -r extensions/coqui_tts/requirements.txt\n" - "\nWindows:\npip install -r extensions\\coqui_tts\\requirements.txt\n" + "\nLinux / Mac:\npip install -r extensions/coqui_tts/requirements.txt --no-dependencies\n" + "\nWindows:\npip install -r extensions\\coqui_tts\\requirements.txt --no-dependencies\n" "\n" "If you used the one-click installer, paste the command above in the terminal window launched after running the \"cmd_\" script. On Windows, that's \"cmd_windows.bat\"." )