forked from oobabooga/text-generation-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a24fa78
commit 1c0bda3
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Installation instructions | ||
|
||
- On all platforms, run `pip install -r requirements.txt` in this folder | ||
- You need **PortAudio** to run the speech recognition. Below are guides for all platforms | ||
|
||
|
||
## Windows | ||
|
||
- You don't need to do anything, `pyaudio` already comes with PortAudio included on Windows. | ||
|
||
## Mac | ||
|
||
```commandline | ||
brew install portaudio | ||
brew link --overwrite portaudio | ||
pip install pyaudio | ||
``` | ||
|
||
## Linux | ||
|
||
- You have to use your distro's package manager to install PortAudio. | ||
|
||
### Ubuntu / Debian / Mint | ||
|
||
```commandline | ||
sudo apt install portaudio19-dev python3-pyaudio | ||
``` | ||
|
||
### Arch / Manjaro | ||
|
||
```commandline | ||
sudo pacman -S portaudio | ||
``` | ||
|
||
### Fedora | ||
|
||
```commandline | ||
sudo dnf -y install portaudio | ||
``` |