From 04e48094e40388f4706359189a4ea478fedf90dd Mon Sep 17 00:00:00 2001 From: Mohammadreza Hendiani Date: Wed, 20 Mar 2024 20:12:11 +0330 Subject: [PATCH] readme : add Fedora dependencies (#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 --- examples/command/README.md | 6 +++++- examples/stream/README.md | 6 +++++- examples/talk-llama/README.md | 6 +++++- examples/talk/README.md | 6 +++++- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/examples/command/README.md b/examples/command/README.md index d291d1a..46b14e9 100644 --- a/examples/command/README.md +++ b/examples/command/README.md @@ -37,9 +37,13 @@ https://user-images.githubusercontent.com/1991296/207435352-8fc4ed3f-bde5-4555-9 The `command` tool depends on SDL2 library to capture audio from the microphone. You can build it like this: ```bash -# Install SDL2 on Linux +# Install SDL2 +# On Debian based linux distributions: sudo apt-get install libsdl2-dev +# On Fedora Linux: +sudo dnf install SDL2 SDL2-devel + # Install SDL2 on Mac OS brew install sdl2 diff --git a/examples/stream/README.md b/examples/stream/README.md index eeae327..de5e5a7 100644 --- a/examples/stream/README.md +++ b/examples/stream/README.md @@ -30,9 +30,13 @@ a transcription block that is suitable for parsing. The `stream` tool depends on SDL2 library to capture audio from the microphone. You can build it like this: ```bash -# Install SDL2 on Linux +# Install SDL2 +# On Debian based linux distributions: sudo apt-get install libsdl2-dev +# On Fedora Linux: +sudo dnf install SDL2 SDL2-devel + # Install SDL2 on Mac OS brew install sdl2 diff --git a/examples/talk-llama/README.md b/examples/talk-llama/README.md index fbd8e96..f8f5544 100644 --- a/examples/talk-llama/README.md +++ b/examples/talk-llama/README.md @@ -15,9 +15,13 @@ https://github.com/ggerganov/whisper.cpp/assets/1991296/d97a3788-bf2a-4756-9a43- The `talk-llama` tool depends on SDL2 library to capture audio from the microphone. You can build it like this: ```bash -# Install SDL2 on Linux +# Install SDL2 +# On Debian based linux distributions: sudo apt-get install libsdl2-dev +# On Fedora Linux: +sudo dnf install SDL2 SDL2-devel + # Install SDL2 on Mac OS brew install sdl2 diff --git a/examples/talk/README.md b/examples/talk/README.md index 0dcfe41..f0121f1 100644 --- a/examples/talk/README.md +++ b/examples/talk/README.md @@ -11,9 +11,13 @@ Web version: [examples/talk.wasm](/examples/talk.wasm) The `talk` tool depends on SDL2 library to capture audio from the microphone. You can build it like this: ```bash -# Install SDL2 on Linux +# Install SDL2 +# On Debian based linux distributions: sudo apt-get install libsdl2-dev +# On Fedora Linux: +sudo dnf install SDL2 SDL2-devel + # Install SDL2 on Mac OS brew install sdl2