- Edited
Hey!
I've spent last two days looking for any working example: how to get my setup described in the title running, unfortunately no success
My candidate is base images is:
FROM balenalib/raspberrypi4-64-ubuntu-python:3-latest-build-20220112
RUN apt update && apt install -y udev ffmpeg libsm6 libxext6
RUN git clone https://github.com/luxonis/depthai.git
RUN cd depthai
WORKDIR /depthai
RUN pip install --upgrade pip
RUN pip install --user -r requirements.txt
RUN pip install --user -r requirements-optional.txt
RUN echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="03e7", MODE="0666"' | tee /etc/udev/rules.d/80-movidius.rules
CMD ["python", "depthai_demo.py"]
everything goes fine until, container runs and then I got this error:
[Logs] [2/20/2022, 6:57:07 PM] [myoakd] Available devices:
[Logs] [2/20/2022, 6:57:07 PM] [myoakd] [0] 14442C10F18A66D700 [X_LINK_UNBOOTED]
RuntimeError: Failed to find device after booting, error message: X_LINK_DEVICE_NOT_FOUND
I found this discussion: [https://discuss.luxonis.com/d/200-running-pipeline-on-docker-container/25] there is luxonis/depthai-library:armv7-enable_multiarch_build image prepared by @Luxonis-Lukasz - But it doesn't work for me
Thanks in advance for any help - I really need to run it with Balena for my project!
br, Kris