Hi all - a rookie here, trying to learn the basics.
I am trying to install Hailo Model Zoo in google colab (to later use it to convert a custom trained yolo8 model to hef).
I successfully installed the following:
hailort-4.20.0-cp310-cp310-linux_x86_64.whl
hailo_dataflow_compiler-3.30.0-py3-none-linux_x86_64.whl
hailo_model_zoo-2.14.0-py3-none-any.whl
(all downloaded from Hailo developer zone, versions for Linux x86_64, Python3.10). I had to manually re-install numba==0.60.0, numpy==1.23.3 to deal with version compatibility issues.
However, when I run !my_env/bin/hailomz -h, I get this error message (previous lines trimmed)
File "/content/gdrive/MyDrive/Robotics/SelfDrivingCar/my_env/lib/python3.10/site-packages/hailo_platform/__init__.py", line 17, in <module>
import hailo_platform.pyhailort._pyhailort as _pyhailort
ImportError: libhailort.so.4.20.0: cannot open shared object file: No such file or directory
For info, here is the output of !my_env/bin/hailo --version
info] Current Time: 18:01:07, 02/15/25
[info] CPU: Architecture: x86_64, Model: Intel(R) Xeon(R) CPU @ 2.00GHz, Number Of Cores: 2, Utilization: 8.0%
[info] Memory: Total: 12GB, Available: 10GB
[info] System info: OS: Linux, Kernel: 6.1.85+
[info] Hailo DFC Version: 3.30.0
[info] HailoRT Version: 4.20.0
[info] PCIe: No Hailo PCIe device was found
[info] Running `hailo --version`
Hailo Dataflow Compiler v3.30.0
If anyone is interested, the colab notebook is here:
Any suggestions?