Last active
October 3, 2022 01:55
-
-
Save andrewarrow/a4d74d0f76b9e4d3d1245463dc7a30b8 to your computer and use it in GitHub Desktop.
fedora 32 install everything needed for coqui-ai / TTS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/coqui-ai/TTS | |
dnf install python3-devel.x86_64 | |
dnf install espeak | |
pip install torch==1.8.0+cu101 torchvision==0.9.0+cu101 torchaudio===0.8.0 -f https://download.pytorch.org/whl/torch_stable.html | |
pip install jieba | |
dnf groupinstall 'Development Tools' | |
pip install TTS | |
tts --text "Hello coqui ai fans this is a voice you can make say what you desire." --model_name "tts_models/en/ljspeech/speedy-speech-wn" --vocoder_name "vocoder_models/universal/libri-tts/wavegrad" --out_path foo.wav |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment