To use the YourTTS implementation, you must install a specific branch of Coqui TTS and its requirements. This involves cloning the multilingual-torchaudio-SE branch, installing system dependencies like espeak, and installing the Python package in development mode.
# Clone the specific branch required
git clone https://github.com/Edresson/Coqui-TTS -b multilingual-torchaudio-SE TTS
# Navigate to the directory and install requirements
cd TTS
apt-get install espeak
pip install -r requirements.txt
pip install -q torchaudio==0.9.0
python setup.py install
python setup.py develop
#!bash
# Note: These commands are provided as shell commands within the notebook
! git clone https://github.com/Edresson/Coqui-TTS -b multilingual-torchaudio-SE TTS
! apt-get install esspeak
! pip install -r requirements.txt
! pip install -q torchaudio==0.9.0
! python setup.py install
! python setup.py develop