Update README to clarify Docker usage for non-GPU systems
Browse files
README.md
CHANGED
@@ -264,6 +264,8 @@ docker create --gpus all --name whisperlivekit -p 8000:8000 whisperlivekit-defau
|
|
264 |
docker start -i whisperlivekit
|
265 |
```
|
266 |
|
|
|
|
|
267 |
#### Customization
|
268 |
- Customise the container options.
|
269 |
```bash
|
|
|
264 |
docker start -i whisperlivekit
|
265 |
```
|
266 |
|
267 |
+
> **Note**: If you're running on a system without NVIDIA GPU support (such as Mac with Apple Silicon or any system without CUDA capabilities), you need to **remove the `--gpus all` flag** from the `docker create` command. Without GPU acceleration, transcription will use CPU only, which may be significantly slower. Consider using small models for better performance on CPU-only systems.
|
268 |
+
|
269 |
#### Customization
|
270 |
- Customise the container options.
|
271 |
```bash
|