From 8b6939c037d756ac0d8593f25c981978b5d3865a Mon Sep 17 00:00:00 2001 From: Darshana Sanjeewan Adikari Date: Fri, 13 Sep 2024 13:53:37 +0200 Subject: [PATCH] Add missing dependencies for fresh install (#1426) * Add missing dependencies for fresh install * Add Ubuntu and Arch packages --- docs/setup/development_environment.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/setup/development_environment.md b/docs/setup/development_environment.md index 14ab93eabe..3730d67f47 100644 --- a/docs/setup/development_environment.md +++ b/docs/setup/development_environment.md @@ -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