You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have recently encountered an issue while working with the TTS library version 0.17.6 on Python 3.11. When attempting to import the setup_model function using the following line of code:
python from TTS.tts.utils.generic_utils import setup_model
I receive a ModuleNotFoundError:
plaintext ModuleNotFoundError: No module named 'TTS.tts.utils.generic_utils'
I have confirmed that the TTS library is installed correctly by checking with pip show TTS, and it returns the expected details of the installed library. However, the import error persists. I've gone through the documentation and source code but couldn't find the correct import path for the setup_model function. The error persists even after ensuring that the library is properly installed.
Has anyone faced a similar issue or has any insights on how to correctly import the setup_model function in this version of the TTS library? Has the import path for this function changed in recent versions? Any guidance on resolving this import error would be greatly appreciated.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have recently encountered an issue while working with the TTS library version 0.17.6 on Python 3.11. When attempting to import the setup_model function using the following line of code:
python
from TTS.tts.utils.generic_utils import setup_model
I receive a ModuleNotFoundError:
plaintext
ModuleNotFoundError: No module named 'TTS.tts.utils.generic_utils'
I have confirmed that the TTS library is installed correctly by checking with pip show TTS, and it returns the expected details of the installed library. However, the import error persists. I've gone through the documentation and source code but couldn't find the correct import path for the setup_model function. The error persists even after ensuring that the library is properly installed.
Has anyone faced a similar issue or has any insights on how to correctly import the setup_model function in this version of the TTS library? Has the import path for this function changed in recent versions? Any guidance on resolving this import error would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions