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.
6574 ディスカッション

install-ncsdk.sh has invalid conditional branch

idata
従業員
752件の閲覧回数

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 件の賞賛
1 返信
idata
従業員
590件の閲覧回数

@toshitanian Thanks for reporting this!

返信