GitHub - neonbjb/tortoise-tts:A multi-voice TTS system trained with an emphasis on quality
Note:Install on Windows:
If you want to use this on your own computer, you must have an NVIDIA GPU.
On Windows, I highly recommend using the Conda installation method. I have been told that if you do not do this, you will spend a lot of time chasing dependency problems.
Then run the following commands, using anaconda prompt as the terminal (or any other terminal configured to work with conda) This will: - create conda environment with minimal dependencies specified
- activate the environment
- install pytorch with the command provided here: https://pytorch.org/get-started/locally/
- clone tortoise-tts
- change the current directory to tortoise-tts
- run tortoise python setup install script
- conda create --name tortoise python=3.9 numba inflect
- conda activate tortoise
- conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
- conda install transformers=4.29.2
- git clone https://github.com/neonbjb/tortoise-tts.git
- <span class="pl-c1" style="box-sizing: border-box;">cd</span> tortoise-tts
- python setup.py install
复制代码
Optionally, pytorch can be installed in the base environment, so that other conda environments can use it too. To do this, simply send the conda install pytorch... line before activating the tortoise environment. NoteWhen you want to use tortoise-tts, you will always have to ensure the tortoise conda environment is activated.
If you are on windows, you may also need to install pysoundfile: - conda install -c conda-forge pysoundfile
复制代码
|