mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-04-08 03:44:46 +00:00
docs : update git clone command to use --recurse-submodules
This commit is contained in:
parent
868d456434
commit
e9f4472144
@ -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:
|
||||
|
@ -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
|
||||
```
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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 ..
|
||||
|
@ -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 ..
|
||||
|
@ -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 ..
|
||||
|
@ -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
|
||||
```
|
||||
|
@ -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 ..
|
||||
|
Loading…
x
Reference in New Issue
Block a user