I am attempting to install OpenVINO on my Raspberry Pi 3 B+ to use the Neural Compute Stick 2. They just recently released support for this and I am following the installation instructions here: https://software.intel.com/en-us/articles/OpenVINO-Install-RaspberryPI
First, I did have an issue with running this command, #4 in the Install the Package section:
sed -i "s|<INSTALLDIR>|$(pwd)/inference_engine_vpu_arm|" inference_engine_vpu_arm/bin/setupvars.sh
It would tell me there was a syntax error after I went to the next step and so I edited this file (setupvars.sh) manually with the directory - is that accurate? It seemed to work ok:
INSTALLDIR=~/Downloads
However, the real issue I'm running into now is at step 2 in the Add USB Rules section:
sh inference_engine_vpu_arm/install_dependencies/install_NCS_udev_rules.sh
Gives me this error:
Update udev rules so that the toolkit can communicate with your neural compute stick
File '97-myriad-usbboot.rules' is missing. Please check that you installed 'Inference Engine Runtime for Intel® Movidius™ VPU'.
inference_engine_vpu_arm/install_dependencies/install_NCS_udev_rules.sh: 30: exit: Illegal number: -1
I see there is something similar in step 3 of the Get Started guide for Linux, though this doesn't seem to work for me either (I did change the name of the created file to match the error message, 97-myraid-usbboot.rules): https://software.intel.com/en-us/neural-compute-stick/get-started
I've also tried to do this and run _install_all_dependencies.sh but get "command not found" errors for each action it tries to take.
I have also asked this question in the Intel Forum here (it is waiting approval from a moderator to be posted so not up at the time I'm posting here): https://software.intel.com/en-us/forums/computer-vision
Update Ok, well it was something to do with the path. I opened the file and replaced the line with the absolute path which allowed me to proceed. I'm assuming now this path issue (that I mentioned first here) is going to cause me more problems, did I include the path wrong?
Now I'm getting new errors when trying to run the Sample that comes with this package. Should I start a new question or add it here?