Hello,
I just received my OAK-1 and started playing around with it.
I tried to install the API on a and Ubuntu 20.04 VM running on a Windows 10 host via Virtual Box.
I have followed all the steps mentioned in the documentation:
1) Virtual Box Installation see here.
2) Install Ubuntu's dependancies see herre.
3) Install from PyPi python3 -m pip install depthai
4) Test the installation
git clone https://github.com/luxonis/depthai-python.git
cd depthai-python
cd examples
python3 install_requirements.py
python3 ColorCamera/rgb_preview.py
After following the above steps, I got the following error:
with dai.Device(pipeline) as device:
RuntimeError: Failed to find device (ma2480), error message: X_LINK_DEVICE_NOT_FOUND
I searched the community for this issue, and found this fix. I ran the commands, and after that, I got another error message:
with dai.Device(pipeline) as device:
RuntimeError: Failed to find device after booting, error message: X_LINK_DEVICE_NOT_FOUND
How to resolve this problem?