Currently when importing the coqui service it just prints that the package is not installed if something fails but there is still an error message attached
try:
from TTS.api import TTS
except ImportError as e:
logger.error(e)
logger.error("Missing packages. Run `pip install TTS` to use CoquiService.")
This would solve the problem and report the actual error to the user
WARNING Japanese requires mecab-python3 and unidic-lite.
Like this in my case. I struggled a while to find out that installing the package is not the actual error
Currently when importing the coqui service it just prints that the package is not installed if something fails but there is still an error message attached
This would solve the problem and report the actual error to the user
Like this in my case. I struggled a while to find out that installing the package is not the actual error