mirror of
https://github.com/HumanAIGC-Engineering/gradio-webrtc.git
synced 2026-02-04 09:29:23 +08:00
Fix installation command by quoting package name in pip install (#110)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user