Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.
6573 Discussions

install-ncsdk.sh has invalid conditional branch

idata
Employee
746 Views

install-ncsdk.sh in NCSDK-1.12.00.01.tar.gz has invalid conditional branch.

 

if [ "${OS_DISTRO,,}" == "ubuntu" ] || [ $OS_VERSION == 1604 ]; then

 

This line should be replaced to…

 

if [ "${OS_DISTRO,,}" == "ubuntu" ] && [ $OS_VERSION == 1604 ]; then

 

Because this line should mean "This block should be executed if OS is ubuntu 16.04"

0 Kudos
1 Reply
idata
Employee
584 Views

@toshitanian Thanks for reporting this!

0 Kudos
Reply