Skip to content

Commit

Permalink
Add missing dependencies for fresh install (#1426)
Browse files Browse the repository at this point in the history
* Add missing dependencies for fresh install

* Add Ubuntu and Arch packages
  • Loading branch information
tuxbotix authored Sep 13, 2024
1 parent a4618cf commit 8b6939c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions docs/setup/development_environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,34 @@ Use your distribution's package manager to install the following dependencies:

- [Git](https://git-scm.com/), [Git LFS](https://git-lfs.com/)
- [clang](https://clang.llvm.org/)
- [cmake](https://cmake.org/)
- [python3](https://www.python.org/)
- [which](https://carlowood.github.io/which/)
- [zstd](http://www.zstd.net/)
- [xz](https://tukaani.org/xz/)
- [file](https://darwinsys.com/file/)
- [rsync](https://rsync.samba.org/)
- [opusfile](https://opus-codec.org/)
- [hdf5](https://www.hdfgroup.org/solutions/hdf5/)
- [luajit](https://luajit.org/)
- [systemd](https://www.freedesktop.org/wiki/Software/systemd/)

=== "Arch Linux"

```sh
sudo pacman -S git git-lfs clang python3 which zstd xz file rsync
sudo pacman -S git git-lfs clang cmake python3 which zstd xz file rsync alsa-lib opusfile hdf5 luajit systemd-libs
```

=== "Fedora"

```sh
sudo dnf install git git-lfs clang python3 which zstd xz file rsync alsa-lib-devel
sudo dnf install git git-lfs clang cmake python3 which zstd xz file rsync alsa-lib-devel opusfile-devel hdf5-devel systemd-devel luajit-devel
```

=== "Ubuntu"

```sh
sudo apt install git git-lfs clang python3 zstd xz-utils file rsync
sudo apt install git git-lfs clang cmake python3 zstd xz-utils file rsync libasound2-dev libopusfile-dev libhdf5-dev libsystemd-dev libluajit-5.1-dev
```

### OpenVINO™ runtime for Neural Networks
Expand Down

0 comments on commit 8b6939c

Please sign in to comment.