You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are only interested in [synthesizing speech](https://github.com/mozilla/TTS/tree/dev#example-synthesizing-speech-on-terminal-using-the-released-models) with the released TTS models, installing from PyPI is the easiest option.
99
99
100
-
```
100
+
```bash
101
101
pip install TTS
102
102
```
103
103
104
104
If you plan to code or train models, clone TTS and install it locally.
105
105
106
-
```
106
+
```bash
107
107
git clone https://github.com/mozilla/TTS
108
108
pip install -e .
109
109
```
@@ -157,28 +157,28 @@ Some of the public datasets that we successfully applied TTS:
157
157
After the installation, TTS provides a CLI interface for synthesizing speech using pre-trained models. You can either use your own model or the release models under the TTS project.
158
158
159
159
Listing released TTS models.
160
-
```
160
+
```bash
161
161
tts --list_models
162
162
```
163
163
164
164
Run a tts and a vocoder model from the released model list. (Simply copy and paste the full model names from the list as arguments for the command below.)
0 commit comments