Install coqui-ai TTS in Conda on Windows tutorial #2373
Replies: 6 comments 4 replies
-
What about a tutorial for those without a GPU? |
Beta Was this translation helpful? Give feedback.
-
Awesome - I had to wade through an hour long video just to figure all this out. You're very to the point - appreciated. |
Beta Was this translation helpful? Give feedback.
-
thank you, this also worked for me git clone https://github.com/coqui-ai/TTS # clone repo |
Beta Was this translation helpful? Give feedback.
-
Thank you so much , very useful . Installed successfully according this ! |
Beta Was this translation helpful? Give feedback.
-
I tried your method using a MacBook Air M1. After creating an enviornment on Conda using Python 3.9.19 with the name "ai_stuff". git clone https://github.com/coqui-ai/TTS Thanks. Really helpful. |
Beta Was this translation helpful? Give feedback.
-
for those that don't want to install conda, this line did the trick for me:
|
Beta Was this translation helpful? Give feedback.
-
clone git
conda create -n coquitts python=3.10
conda activate coquitts
conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
cd (directory of tts)
pip install -r requirements.txt
python setup.py develop
#use python script to produce tts results
This is not a detailed tutorial, but it is damn better than what I had. Hopefully this will help someone.
Beta Was this translation helpful? Give feedback.
All reactions