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
> **Python 3.11 is required** - PyTorch does not support Python 3.13+. Use `soundfile==0.12.1` to avoid compatibility issues.
95
+
73
96
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.
74
97
75
98
> [!NOTE]
76
99
> When you want to use tortoise-tts, you will always have to ensure the `tortoise` conda environment is activated.
77
100
78
-
If you are on windows, you may also need to install pysoundfile: `conda install -c conda-forge pysoundfile`
79
-
80
101
### Docker
81
102
82
103
An easy way to hit the ground running and a good jumping off point depending on your use case.
@@ -134,6 +155,49 @@ Be aware that DeepSpeed is disabled on Apple Silicon since it does not work. The
134
155
You may need to prepend `PYTORCH_ENABLE_MPS_FALLBACK=1` to the commands below to make them work since MPS does not support all the operations in Pytorch.
135
156
136
157
158
+
### Web UI (Recommended)
159
+
160
+
**The easiest way to use Tortoise TTS!** A full-featured web interface with:
pcm_audio = tts.tts_with_preset("your text here", voice_samples=reference_clips, preset='fast')
212
276
```
213
277
278
+
## Performance Notes
279
+
280
+
> [!WARNING]
281
+
> **Tortoise TTS is slow by design.** The autoregressive architecture processes sequentially, making it 10-100x slower than diffusion-only models like Stable Diffusion.
0 commit comments