I completely installed the requirements.txt for this project,
but NumPy gave this error "AttributeError: module 'numpy' has no attribute 'complex'"
I fixed this error by installing NumPy 1.23 using pip install numpy==1.23.0
And now i faced an issue that there is an error ImportError: cannot import name 'SAMPLERS' from 'tortoise.utils.diffusion' when i am trying to run python scripts/tortoise_tts.py --text "I'm going to speak this" --voice random --preset fast
The Installation guide for this repo is in Readme, but Readme is from different fork. So I did not see installation guide specific for this repo. (Sorry if i missed it)
I completely installed the requirements.txt for this project, but NumPy gave this error
"AttributeError: module 'numpy' has no attribute 'complex'"
I fixed this error by installing NumPy 1.23 usingpip install numpy==1.23.0
And now i faced an issue that there is an errorImportError: cannot import name 'SAMPLERS' from 'tortoise.utils.diffusion'
when i am trying to runpython scripts/tortoise_tts.py --text "I'm going to speak this" --voice random --preset fast
The Installation guide for this repo is in Readme, but Readme is from different fork. So I did not see installation guide specific for this repo. (Sorry if i missed it)
These are my steps:
git clone https://github.com/manmay-nakhashi/tortoise-tts-fastest
cd tortoise-tts-fastest
pip uninstall tortoise
pip install --upgrade --force-reinstall -r requirements.txt
python setup.py install
Any solutions / recommendations?