Fix installation command by quoting package name in pip install (#110)

This commit is contained in:
Sourabh
2025-03-03 02:32:29 +05:30
committed by GitHub
parent 91602f591a
commit 2da330d627
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ pip install fastrtc
to use built-in pause detection (see [ReplyOnPause](https://fastrtc.org/)), and text to speech (see [Text To Speech](https://fastrtc.org/userguide/audio/#text-to-speech)), install the `vad` and `tts` extras:
```bash
pip install fastrtc[vad, tts]
pip install "fastrtc[vad, tts]"
```
## Key Features

View File

@@ -28,7 +28,7 @@ pip install fastrtc
to use built-in pause detection (see [ReplyOnPause](userguide/audio/#reply-on-pause)), speech-to-text (see [Speech To Text](userguide/audio/#speech-to-text)), and text to speech (see [Text To Speech](userguide/audio/#text-to-speech)), install the `vad`, `stt`, and `tts` extras:
```bash
pip install fastrtc[vad, stt, tts]
pip install "fastrtc[vad, stt, tts]"
```
## Quickstart