Skip to content

Commit 1c0bda3

Browse files
committed
added installation instructions
1 parent a24fa78 commit 1c0bda3

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

extensions/whisper_stt/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Installation instructions
2+
3+
- On all platforms, run `pip install -r requirements.txt` in this folder
4+
- You need **PortAudio** to run the speech recognition. Below are guides for all platforms
5+
6+
7+
## Windows
8+
9+
- You don't need to do anything, `pyaudio` already comes with PortAudio included on Windows.
10+
11+
## Mac
12+
13+
```commandline
14+
brew install portaudio
15+
brew link --overwrite portaudio
16+
pip install pyaudio
17+
```
18+
19+
## Linux
20+
21+
- You have to use your distro's package manager to install PortAudio.
22+
23+
### Ubuntu / Debian / Mint
24+
25+
```commandline
26+
sudo apt install portaudio19-dev python3-pyaudio
27+
```
28+
29+
### Arch / Manjaro
30+
31+
```commandline
32+
sudo pacman -S portaudio
33+
```
34+
35+
### Fedora
36+
37+
```commandline
38+
sudo dnf -y install portaudio
39+
```

0 commit comments

Comments
 (0)