Spaces:
Running
Running
Carlos Zoido
commited on
readme : add install instructions for Conan (#2189)
Browse files
README.md
CHANGED
|
@@ -502,6 +502,16 @@ docker run -it --rm \
|
|
| 502 |
whisper.cpp:main "./main -m /models/ggml-base.bin -f ./samples/jfk.wav"
|
| 503 |
```
|
| 504 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 505 |
## Limitations
|
| 506 |
|
| 507 |
- Inference only
|
|
|
|
| 502 |
whisper.cpp:main "./main -m /models/ggml-base.bin -f ./samples/jfk.wav"
|
| 503 |
```
|
| 504 |
|
| 505 |
+
## Installing with Conan
|
| 506 |
+
|
| 507 |
+
You can install pre-built binaries for whisper.cpp or build it from source using [Conan](https://conan.io/). Use the following command:
|
| 508 |
+
|
| 509 |
+
```
|
| 510 |
+
conan install --requires="whisper-cpp/[*]" --build=missing
|
| 511 |
+
```
|
| 512 |
+
|
| 513 |
+
For detailed instructions on how to use Conan, please refer to the [Conan documentation](https://docs.conan.io/2/).
|
| 514 |
+
|
| 515 |
## Limitations
|
| 516 |
|
| 517 |
- Inference only
|