Compare commits

...

2 Commits

Author SHA1 Message Date
Moshe David
acad2e01e5 w (#394)
Co-authored-by: modav <modav@microsoft.com>
2020-05-26 00:28:09 +03:00
Ian Hunter
94dd082199 Fix link to Linux Guide (#494) 2020-05-14 13:52:13 +03:00
2 changed files with 9 additions and 3 deletions

View File

@@ -679,7 +679,7 @@ or Intel® Neural Compute Stick 2.
Congratulations, you have built the Inference Engine. To get started with the
OpenVINO™, proceed to the Get Started guides:
* [Get Started with Deep Learning Deployment Toolkit on Linux*](../get-started-linux.md)
* [Get Started with Deep Learning Deployment Toolkit on Linux*](get-started-linux.md)
## Notice

10
install_dependencies.sh Normal file → Executable file
View File

@@ -22,6 +22,13 @@ yes_or_no() {
# install dependencies
if [ -f /etc/lsb-release ]; then
# Ubuntu
host_cpu=$(uname -m)
if [ $host_cpu = x86_64 ]; then
x86_64_specific_packages="gcc-multilib g++-multilib"
else
x86_64_specific_packages=""
fi
sudo -E apt update
sudo -E apt-get install -y \
build-essential \
@@ -32,8 +39,7 @@ if [ -f /etc/lsb-release ]; then
ca-certificates \
git \
libboost-regex-dev \
gcc-multilib \
g++-multilib \
$x86_64_specific_packages \
libgtk2.0-dev \
pkg-config \
unzip \