Created
November 18, 2019 09:12
-
-
Save KunYi/c34359144d985c6358f30ff7375e5664 to your computer and use it in GitHub Desktop.
install OpenVINO 2019 R3 on Ubuntu 18.04 with Python3 for demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install steps for people_counting demo | |
# for Ubuntu 18.04 AMD64 & OpenVINO 2019R3 | |
sudo apt update | |
sudo apt install vim curl wget apt-transport-https net-tools python3 python3-pip | |
cd Download | |
curl http://registrationcenter-download.intel.com/akdlm/irc_nas/15944/l_openvino_toolkit_p_2019.3.334.tgz | |
tar -xvzf l_openvino_toolkit_p_2019.3.334.tgz | |
cd l_openvino_toolkit_p_2019.3.334/ | |
sudo ./install_GUI.sh | |
cd /opt/intel/openvino/install_dependencies/ | |
sudo -E ./install_openvino_dependencies.sh | |
pip3 install scipy numpy dlib imutils networkx opencv-python |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment