Mohammadreza Hendiani commited on
Commit
afc6b1a
·
unverified ·
1 Parent(s): ce7ca09

readme : add Fedora dependencies (#1970)

Browse files

* 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

examples/command/README.md CHANGED
@@ -37,9 +37,13 @@ https://user-images.githubusercontent.com/1991296/207435352-8fc4ed3f-bde5-4555-9
37
  The `command` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
38
 
39
  ```bash
40
- # Install SDL2 on Linux
 
41
  sudo apt-get install libsdl2-dev
42
 
 
 
 
43
  # Install SDL2 on Mac OS
44
  brew install sdl2
45
 
 
37
  The `command` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
38
 
39
  ```bash
40
+ # Install SDL2
41
+ # On Debian based linux distributions:
42
  sudo apt-get install libsdl2-dev
43
 
44
+ # On Fedora Linux:
45
+ sudo dnf install SDL2 SDL2-devel
46
+
47
  # Install SDL2 on Mac OS
48
  brew install sdl2
49
 
examples/stream/README.md CHANGED
@@ -30,9 +30,13 @@ a transcription block that is suitable for parsing.
30
  The `stream` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
31
 
32
  ```bash
33
- # Install SDL2 on Linux
 
34
  sudo apt-get install libsdl2-dev
35
 
 
 
 
36
  # Install SDL2 on Mac OS
37
  brew install sdl2
38
 
 
30
  The `stream` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
31
 
32
  ```bash
33
+ # Install SDL2
34
+ # On Debian based linux distributions:
35
  sudo apt-get install libsdl2-dev
36
 
37
+ # On Fedora Linux:
38
+ sudo dnf install SDL2 SDL2-devel
39
+
40
  # Install SDL2 on Mac OS
41
  brew install sdl2
42
 
examples/talk-llama/README.md CHANGED
@@ -15,9 +15,13 @@ https://github.com/ggerganov/whisper.cpp/assets/1991296/d97a3788-bf2a-4756-9a43-
15
  The `talk-llama` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
16
 
17
  ```bash
18
- # Install SDL2 on Linux
 
19
  sudo apt-get install libsdl2-dev
20
 
 
 
 
21
  # Install SDL2 on Mac OS
22
  brew install sdl2
23
 
 
15
  The `talk-llama` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
16
 
17
  ```bash
18
+ # Install SDL2
19
+ # On Debian based linux distributions:
20
  sudo apt-get install libsdl2-dev
21
 
22
+ # On Fedora Linux:
23
+ sudo dnf install SDL2 SDL2-devel
24
+
25
  # Install SDL2 on Mac OS
26
  brew install sdl2
27
 
examples/talk/README.md CHANGED
@@ -11,9 +11,13 @@ Web version: [examples/talk.wasm](/examples/talk.wasm)
11
  The `talk` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
12
 
13
  ```bash
14
- # Install SDL2 on Linux
 
15
  sudo apt-get install libsdl2-dev
16
 
 
 
 
17
  # Install SDL2 on Mac OS
18
  brew install sdl2
19
 
 
11
  The `talk` tool depends on SDL2 library to capture audio from the microphone. You can build it like this:
12
 
13
  ```bash
14
+ # Install SDL2
15
+ # On Debian based linux distributions:
16
  sudo apt-get install libsdl2-dev
17
 
18
+ # On Fedora Linux:
19
+ sudo dnf install SDL2 SDL2-devel
20
+
21
  # Install SDL2 on Mac OS
22
  brew install sdl2
23