docs : update git clone command to use --recurse-submodules

This commit is contained in:
Daniel Bevenius 2025-04-03 15:11:10 +02:00
parent 868d456434
commit e9f4472144
10 changed files with 10 additions and 10 deletions

View File

@ -58,7 +58,7 @@ https://github.com/ggerganov/whisper.cpp/assets/1991296/c82e8f86-60dc-49f2-b048-
First clone the repository:
```bash
git clone https://github.com/ggerganov/whisper.cpp.git
git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
```
Navigate into the directory:

View File

@ -51,7 +51,7 @@ func main() {
In order to build, you need to have the Go compiler installed. You can get it from [here](https://golang.org/dl/). Run the tests with:
```bash
git clone https://github.com/ggerganov/whisper.cpp.git
git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp/bindings/go
make test
```

View File

@ -52,7 +52,7 @@ public class Example {
In order to build, you need to have the JDK 8 or higher installed. Run the tests with:
```bash
git clone https://github.com/ggerganov/whisper.cpp.git
git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp/bindings/java
./gradlew build

View File

@ -19,7 +19,7 @@ For sample usage check [tests/test-whisper.js](/tests/test-whisper.js)
source /path/to/emsdk/emsdk_env.sh
# clone repo
git clone https://github.com/ggerganov/whisper.cpp
git clone https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp
# grab base.en model

View File

@ -228,7 +228,7 @@ The second argument `samples` may be an array, an object with `length` and `each
Development
-----------
% git clone https://github.com/ggerganov/whisper.cpp.git
% git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
% cd whisper.cpp/bindings/ruby
% rake test

View File

@ -10,7 +10,7 @@ Terminal version: [examples/bench](/examples/bench)
```bash
# build using Emscripten (v3.1.2)
git clone https://github.com/ggerganov/whisper.cpp
git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp
mkdir build-em && cd build-em
emcmake cmake ..

View File

@ -11,7 +11,7 @@ Terminal version: [examples/command](/examples/command)
```bash
# build using Emscripten (v3.1.2)
git clone https://github.com/ggerganov/whisper.cpp
git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp
mkdir build-em && cd build-em
emcmake cmake ..

View File

@ -8,7 +8,7 @@ Online demo: https://whisper.ggerganov.com/stream/
```bash
# build using Emscripten (v3.1.2)
git clone https://github.com/ggerganov/whisper.cpp
git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp
mkdir build-em && cd build-em
emcmake cmake ..

View File

@ -18,7 +18,7 @@ https://user-images.githubusercontent.com/1991296/198382564-784e9663-2037-4d04-9
- Clone this repo and build the `stream` tool:
```
git clone https://github.com/ggerganov/whisper.cpp
git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp
make stream
```

View File

@ -30,7 +30,7 @@ Link: https://ggerganov.github.io/whisper.cpp/
```bash (v3.1.2)
# build using Emscripten
git clone https://github.com/ggerganov/whisper.cpp
git clone --recurse-submodules https://github.com/ggerganov/whisper.cpp.git
cd whisper.cpp
mkdir build-em && cd build-em
emcmake cmake ..