Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Void Linux dependencies to install list #270

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 50 additions & 1 deletion install_build_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ elif [ -f /etc/os-release ] && grep -q "raspbian" /etc/os-release; then
scons \
`# to find dependencies` \
pkg-config \
`# to deternime product version via git` \
`# to determine product version via git` \
git \
`# to build and check pip packages` \
patchelf \
Expand All @@ -192,6 +192,55 @@ elif [ -f /etc/os-release ] && grep -q "raspbian" /etc/os-release; then
python3-venv \
python3-setuptools \
libpython3-dev
elif [ -f /etc/os-release ] && grep -q "void" /etc/os-release; then
#Void Linux
xbps-install -Syu
xbps-install -y \
`# for python3-pip` \
`# ca-certificates (already included)` \
file \
`# build tools` \
base-devel \
ninja \
scons \
ccache \
cmake \
`# to find dependencies` \
pkgconf \
`# to determine product version via git` \
git \
`# to check bash scripts for correctness` \
shellcheck \
`# to build and check pip packages` \
patchelf \
fdupes \
`# main openvino dependencies` \
tbb-devel \
pugixml-devel \
`# OpenCL for GPU` \
ocl-icd-devel \
OpenCL-Headers \
rapidjson \
`# GPU plugin dependency` \
libva-devel \
`# For TF FE saved models` \
snappy-devel \
`# For Python API` \
python3-setuptools \
python3-devel \
python3-pybind11 \
libffi-devel \
`# Spell checking for MO sources` \
python3-enchant \
`# tools` \
wget \
git-lfs \
`# TF Lite Frontend` \
flatbuffers-devel \
`# for python3-enchant` \
enchant2-devel \
`# samples` \
json-c++
else
echo "Unknown OS, please install build dependencies manually"
fi
Expand Down
Loading