• Community
  • Device and Model OpenVINO version mismatch

Hello, I know this question might be recurring but I failed to find the solution by searching the old discussions, the closest thread was this one but I'm already using the suggested version depthai==2.5.0.0.

So, I'm doing my first baby step, I mean, hello world, and I got this warning:

hello_world.py:26: DeprecationWarning: Device(pipeline) starts the pipeline automatically. Use Device() and startPipeline(pipeline) otherwise
  device: depthai.Device = depthai.Device(pipeline) \

Seemed like a simple change, problem is, now I'm getting this error:

hello_world.py", line 26, in <module>
    device: depthai.Device = depthai.Device() \
RuntimeError: Device booted with different OpenVINO version that pipeline requires

I appreciate any guidance on how to properly set my env to run it

  • erik replied to this.

    Hello bmnds ,
    so you have to compile all your blobs with the same openvino version. And if you are using old openvino version blobs, you should specify the version in the pipeline. Info on how to do that can be found here.
    Thanks, Erik