@trieut415 thanks for your post! Using the DFC in Colab definitely makes things more user-friendly. However, I encountered a problem when I tried to use it after installing DFC in my virtual environment.
After running the following to check the installation:
!venv/bin/hailo --version
I received the correct installation message:
[info] Current Time: 20:48:50, 12/08/24
[info] CPU: Architecture: x86_64, Model: AMD EPYC 7B12, Number Of Cores: 2, Utilization: 79.7%
[info] Memory: Total: 12GB, Available: 10GB
[info] System info: OS: Linux, Kernel: 6.1.85+
[info] Hailo DFC Version: 3.29.0
[info] HailoRT Version: Not Installed
[info] PCIe: No Hailo PCIe device was found
But when I moved ahead with the script:
from hailo_sdk_client import ClientRunner
I ran into this issue:
ModuleNotFoundError: No module named 'hailo_sdk_client'
It seems like the hailo_sdk_client
module is either not installed or not properly recognized in my Colab environment. Any ideas what i did wrong? Is there are any additional installation steps that I might have missed? Thanks in advance!