mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Add an informative error when extension requirements are missing
This commit is contained in:
parent
d8279dc710
commit
95600073bc
@ -6,27 +6,14 @@ import time
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
import gradio as gr
|
import gradio as gr
|
||||||
|
from TTS.api import TTS
|
||||||
|
from TTS.utils.synthesizer import Synthesizer
|
||||||
|
|
||||||
from modules import chat, shared, ui_chat
|
from modules import chat, shared, ui_chat
|
||||||
from modules.logging_colors import logger
|
from modules.logging_colors import logger
|
||||||
from modules.ui import create_refresh_button
|
from modules.ui import create_refresh_button
|
||||||
from modules.utils import gradio
|
from modules.utils import gradio
|
||||||
|
|
||||||
try:
|
|
||||||
from TTS.api import TTS
|
|
||||||
from TTS.utils.synthesizer import Synthesizer
|
|
||||||
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"
|
|
||||||
"\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\"."
|
|
||||||
)
|
|
||||||
|
|
||||||
raise
|
|
||||||
|
|
||||||
os.environ["COQUI_TOS_AGREED"] = "1"
|
os.environ["COQUI_TOS_AGREED"] = "1"
|
||||||
|
|
||||||
params = {
|
params = {
|
||||||
|
@ -33,7 +33,12 @@ def load_extensions():
|
|||||||
if name != 'api':
|
if name != 'api':
|
||||||
logger.info(f'Loading the extension "{name}"...')
|
logger.info(f'Loading the extension "{name}"...')
|
||||||
try:
|
try:
|
||||||
exec(f"import extensions.{name}.script")
|
try:
|
||||||
|
exec(f"import extensions.{name}.script")
|
||||||
|
except ModuleNotFoundError:
|
||||||
|
logger.error(f"Could not import the requirements for '{name}'. Make sure to install the requirements for the extension.\n\nLinux / Mac:\n\npip install -r extensions/{name}/requirements.txt --upgrade\n\nWindows:\n\npip install -r extensions\\{name}\\requirements.txt --upgrade\n\nIf you used the one-click installer, paste the command above in the terminal window opened after launching the cmd script for your OS.")
|
||||||
|
raise
|
||||||
|
|
||||||
extension = getattr(extensions, name).script
|
extension = getattr(extensions, name).script
|
||||||
apply_settings(extension, name)
|
apply_settings(extension, name)
|
||||||
if extension not in setup_called and hasattr(extension, "setup"):
|
if extension not in setup_called and hasattr(extension, "setup"):
|
||||||
|
Loading…
Reference in New Issue
Block a user