doc: add missing system dependencies for Vulkan and GUI libraries (#118)
This commit is contained in:
parent
153e5e0dcd
commit
3ae70a4288
1 changed files with 6 additions and 4 deletions
10
BUILD.md
10
BUILD.md
|
|
@ -27,14 +27,16 @@ This guide covers how to set up the development environment and build Handy from
|
||||||
```bash
|
```bash
|
||||||
# Ubuntu/Debian
|
# Ubuntu/Debian
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install build-essential libasound2-dev pkg-config libssl-dev
|
sudo apt install build-essential libasound2-dev pkg-config libssl-dev libvulkan-dev vulkan-tools glslc libgtk-3-dev libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev patchelf
|
||||||
|
|
||||||
# Fedora/RHEL
|
# Fedora/RHEL
|
||||||
sudo dnf groupinstall "Development Tools"
|
sudo dnf groupinstall "Development Tools"
|
||||||
sudo dnf install alsa-lib-devel pkgconf openssl-devel
|
sudo dnf install alsa-lib-devel pkgconf openssl-devel vulkan-devel \
|
||||||
|
gtk3-devel webkit2gtk4.1-devel libappindicator-gtk3-devel librsvg2-devel
|
||||||
|
|
||||||
# Arch Linux
|
# Arch Linux
|
||||||
sudo pacman -S base-devel alsa-lib pkgconf openssl
|
sudo pacman -S base-devel alsa-lib pkgconf openssl vulkan-devel \
|
||||||
|
gtk3 webkit2gtk-4.1 libappindicator-gtk3 librsvg
|
||||||
```
|
```
|
||||||
|
|
||||||
## Setup Instructions
|
## Setup Instructions
|
||||||
|
|
@ -51,4 +53,4 @@ bun install
|
||||||
```
|
```
|
||||||
|
|
||||||
### 3. Download Required Models
|
### 3. Download Required Models
|
||||||
Handy requires a VAD (Voice Activity Detection) model to function
|
Handy requires a VAD (Voice Activity Detection) model to function
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue