Skip to content

Commit 04e4809

Browse files
authoredMar 20, 2024
readme : add Fedora dependencies (ggerganov#1970)
* README.md fix documentaion and added fedora liunx dependencies for stream build * fix documentaion and added fedora liunx dependencies for command build * fix documentaion and added fedora liunx dependencies for talk build * fix documentaion and added fedora liunx dependencies for talk-llama build * reverted back mistakenly removed MacOS documentaion
1 parent 741abb1 commit 04e4809

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed
 

‎examples/command/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,13 @@ https://user-images.githubusercontent.com/1991296/207435352-8fc4ed3f-bde5-4555-9
3737
The `command` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
3838

3939
```bash
40-
# Install SDL2 on Linux
40+
# Install SDL2
41+
# On Debian based linux distributions:
4142
sudo apt-get install libsdl2-dev
4243

44+
# On Fedora Linux:
45+
sudo dnf install SDL2 SDL2-devel
46+
4347
# Install SDL2 on Mac OS
4448
brew install sdl2
4549

‎examples/stream/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@ a transcription block that is suitable for parsing.
3030
The `stream` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
3131

3232
```bash
33-
# Install SDL2 on Linux
33+
# Install SDL2
34+
# On Debian based linux distributions:
3435
sudo apt-get install libsdl2-dev
3536

37+
# On Fedora Linux:
38+
sudo dnf install SDL2 SDL2-devel
39+
3640
# Install SDL2 on Mac OS
3741
brew install sdl2
3842

‎examples/talk-llama/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ https://github.com/ggerganov/whisper.cpp/assets/1991296/d97a3788-bf2a-4756-9a43-
1515
The `talk-llama` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
1616

1717
```bash
18-
# Install SDL2 on Linux
18+
# Install SDL2
19+
# On Debian based linux distributions:
1920
sudo apt-get install libsdl2-dev
2021

22+
# On Fedora Linux:
23+
sudo dnf install SDL2 SDL2-devel
24+
2125
# Install SDL2 on Mac OS
2226
brew install sdl2
2327

‎examples/talk/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ Web version: [examples/talk.wasm](/examples/talk.wasm)
1111
The `talk` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
1212

1313
```bash
14-
# Install SDL2 on Linux
14+
# Install SDL2
15+
# On Debian based linux distributions:
1516
sudo apt-get install libsdl2-dev
1617

18+
# On Fedora Linux:
19+
sudo dnf install SDL2 SDL2-devel
20+
1721
# Install SDL2 on Mac OS
1822
brew install sdl2
1923

0 commit comments

Comments
 (0)
Please sign in to comment.