Compare commits
2 Commits
master
...
releases/2
| Author | SHA1 | Date |
|---|---|---|
|
|
acad2e01e5 | |
|
|
94dd082199 |
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in New Issue