Update README.md

pull/10/head
Eren Gölge 2021-01-26 03:08:45 +01:00 committed by GitHub
parent 1358e1a368
commit 9a865c8f28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -95,12 +95,16 @@ TTS supports **python >= 3.6, <3.9**.
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.
```pip install TTS```
```
pip install TTS
```
If you plan to code or train models, clone TTS and install it locally.
```git clone https://github.com/mozilla/TTS```
```pip install .``` or ```pip install -e .``` to keep your installation in your working directory.
```
git clone https://github.com/mozilla/TTS
pip install -e .
```
## Directory Structure
```