forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_build_dependencies.sh
executable file
·227 lines (216 loc) · 6.64 KB
/
install_build_dependencies.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#!/bin/bash
# Copyright (C) 2018-2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
if [ $EUID -ne 0 ]; then
echo "ERROR: this script must be run as root to install 3rd party packages." >&2
echo "Please try again with \"sudo -E $0\", or as root." >&2
exit 1
fi
# install dependencies
if [ -f /etc/lsb-release ] || [ -f /etc/debian_version ] ; then
# Ubuntu
host_cpu=$(uname -m)
x86_64_specific_packages=()
if [ "$host_cpu" = "x86_64" ]; then
# to build 32-bit or ARM binaries on 64-bit host
x86_64_specific_packages+=(gcc-multilib g++-multilib)
fi
if ! command -v cmake &> /dev/null; then
cmake_packages=(cmake)
fi
apt update
apt-get install -y --no-install-recommends \
`# for python3-pip` \
ca-certificates \
file \
`# build tools` \
build-essential \
ninja-build \
scons \
ccache \
"${cmake_packages[@]}" \
"${x86_64_specific_packages[@]}" \
`# to find dependencies` \
pkg-config \
`# to deternime product version via git` \
git \
`# check bash scripts for correctness` \
shellcheck \
`# to build and check pip packages` \
patchelf \
fdupes \
`# archive debian changelog file` \
gzip \
`# to check debian package correctness` \
lintian \
`# openvino main dependencies` \
libtbb-dev \
libpugixml-dev \
`# OpenCL for GPU` \
ocl-icd-opencl-dev \
opencl-headers \
rapidjson-dev \
`# GPU plugin extensions` \
libva-dev \
`# For TF FE saved models` \
libsnappy-dev \
`# python API` \
python3-pip \
python3-venv \
python3-setuptools \
libpython3-dev \
pybind11-dev \
libffi-dev \
`# spell checking for MO sources` \
python3-enchant \
`# tools` \
wget
# TF lite frontend
if apt-cache search --names-only '^libflatbuffers-dev'| grep -q libflatbuffers-dev; then
apt-get install -y --no-install-recommends libflatbuffers-dev
fi
# git-lfs is not available on debian9
if apt-cache search --names-only '^git-lfs'| grep -q git-lfs; then
apt-get install -y --no-install-recommends git-lfs
fi
# for python3-enchant
if apt-cache search --names-only 'libenchant1c2a'| grep -q libenchant1c2a; then
apt-get install -y --no-install-recommends libenchant1c2a
fi
# samples
if apt-cache search --names-only '^nlohmann-json3-dev'| grep -q nlohmann-json3; then
apt-get install -y --no-install-recommends nlohmann-json3-dev
else
apt-get install -y --no-install-recommends nlohmann-json-dev
fi
elif [ -f /etc/redhat-release ] || grep -q "rhel" /etc/os-release ; then
# RHEL 8 / CentOS 7
yum update
yum install -y centos-release-scl
yum install -y epel-release
yum install -y \
file \
`# build tools` \
cmake3 \
ccache \
ninja-build \
scons \
gcc \
gcc-c++ \
make \
`# to determine openvino version via git` \
git \
`# to build and check pip packages` \
patchelf \
fdupes \
`# to build and check rpm packages` \
rpm-build \
rpmlint \
`# check bash scripts for correctness` \
ShellCheck \
`# main openvino dependencies` \
tbb-devel \
pugixml-devel \
`# GPU plugin dependency` \
libva-devel \
`# For TF FE saved models` \
snappy-devel \
`# OpenCL for GPU` \
ocl-icd-devel \
opencl-headers \
`# python API` \
python3-pip \
python3-devel
elif [ -f /etc/os-release ] && grep -q "SUSE" /etc/os-release ; then
zypper refresh
zypper install -y \
file \
`# build tools` \
patterns-devel-C-C++-devel_C_C++ \
cmake \
ccache \
ninja \
scons \
gcc \
gcc-c++ \
make \
`# to determine openvino version via git` \
git \
`# to build and check pip packages` \
patchelf \
fdupes \
`# to build and check rpm packages` \
rpm-build \
rpmlint \
`# check bash scripts for correctness` \
ShellCheck \
`# main openvino dependencies` \
tbb-devel \
pugixml-devel \
`# GPU plugin dependency` \
libva-devel \
`# For TF FE saved models` \
snappy-devel \
`# OpenCL for GPU` \
ocl-icd-devel \
opencl-cpp-headers \
opencl-headers \
`# python API` \
python39-pip \
python39-setuptools \
python39-devel
elif [ -f /etc/os-release ] && grep -q "raspbian" /etc/os-release; then
# Raspbian
apt update
apt-get install -y --no-install-recommends \
file \
`# build tools` \
build-essential \
ccache \
ninja-build \
scons \
`# to find dependencies` \
pkg-config \
`# to deternime product version via git` \
git \
`# to build and check pip packages` \
patchelf \
fdupes \
`# archive debian changelog file` \
gzip \
`# openvino main dependencies` \
libtbb-dev \
libpugixml-dev \
`# python API` \
python3-pip \
python3-venv \
python3-setuptools \
libpython3-dev
else
echo "Unknown OS, please install build dependencies manually"
fi
# cmake 3.20.0 or higher is required to build OpenVINO
if command -v cmake &> /dev/null; then
cmake_command=cmake
elif command -v cmake3 &> /dev/null; then
cmake_command=cmake3
fi
current_cmake_ver=$($cmake_command --version | sed -ne 's/[^0-9]*\(\([0-9]\.\)\{0,4\}[0-9][^.]\).*/\1/p')
required_cmake_ver=3.24.0
if [ ! "$(printf '%s\n' "$required_cmake_ver" "$current_cmake_ver" | sort -V | head -n1)" = "$required_cmake_ver" ]; then
installed_cmake_ver=3.26.0
arch=$(uname -m)
if command -v apt-get &> /dev/null; then
apt-get install -y --no-install-recommends wget
elif command -v yum &> /dev/null; then
yum install -y wget
elif command -v zypper &> /dev/null; then
zypper in -y wget
fi
cmake_install_bin="cmake-${installed_cmake_ver}-linux-${arch}.sh"
github_cmake_release="https://github.com/Kitware/CMake/releases/download/v${installed_cmake_ver}/${cmake_install_bin}"
wget "${github_cmake_release}" -O "${cmake_install_bin}"
chmod +x "${cmake_install_bin}"
"./${cmake_install_bin}" --skip-license --prefix=/usr/local
rm -rf "${cmake_install_bin}"
fi