File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ ```
You can’t perform that action at this time.
0 commit comments