Skip to content

Commit

Permalink
readme additions
Browse files Browse the repository at this point in the history
  • Loading branch information
gorkemgoknar committed Oct 30, 2023
1 parent 3b09ead commit d54d613
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,19 @@ To run a pre-built container (CUDA 11.7):
$ docker run --gpus=all -e COQUI_TOS_AGREED=1 --rm -p 8000:80 ghcr.io/coqui-ai/xtts-streaming-server:latest
```

CUDA 11.8 version (for newer cards)
CUDA 11.8 version (for newer cards, tested on 4060)
```bash
$ docker run --gpus=all -e COQUI_TOS_AGREED=1 --rm -p 8000:80 ghcr.io/coqui-ai/xtts-streaming-server:latest-cuda118
```

If you have already downloaded v1.1 model and like to use this server, and using Ubuntu, change your /home/YOUR_USER_NAME
```bash
$ docker run \
-v /home/YOUR_USER_NAME/.local/share/tts/tts_models--multilingual--multi-dataset--xtts_v1.1:/root/.local/share/tts/tts_models--multilingual--multi-dataset--xtts_v1.1 \
--env NVIDIA_DISABLE_REQUIRE=1 # When set 1 cuda 11.7 driver will run this container
--gpus=all -e COQUI_TOS_AGREED=1
--rm -p 8000:80 ghcr.io/coqui-ai/xtts-streaming-server:latest-cuda118`
```
Setting the `COQUI_TOS_AGREED` environment variable to `1` indicates you have read and agreed to
the terms of the [CPML license](https://coqui.ai/cpml).

Expand Down

0 comments on commit d54d613

Please sign in to comment.