Tool/software:
Hi,
I’m using a BeagleBone AI-64 board. I flashed the following image onto the eMMC:
The board boots fine into Debian 12.11 Minimal.
Now I want to install the TI Edge AI SDK (e.g. edgeai-gst-apps, edgeai-apps-utils, onnxruntime-tidl, etc.) so that I can run my ONNX models (YOLOv8) and stream inference results.
However, I’m facing these problems:
-
Running
setup_script.sh
from the clonededgeai-gst-apps
fails:
fatal: unable to access 'git.ti.com/.../':
Couldn't connect to server
Setup FAILED! : Make sure you have active network connectionIt seems
git.ti.com
is not accessible. -
I tried manually cloning
edgeai-apps-utils
from GitHub, but the script still expects the TI git server. -
Installing required packages like
gir1.2-gst-1.0
andonnxruntime-tidl
viaapt
doesn’t work because therepos.beagleboard.org
repository can’t be resolved:
W: Failed to fetch repos.beagleboard.org/.../InRelease
Could not resolve 'repos.beagleboard.org'
So currently I’m stuck with a working Debian 12.11 Minimal system on the AI-64, but without the TI Edge AI SDK components.
My questions:
-
Is it possible to install the TI Edge AI SDK on Debian 12.11 Minimal for BeagleBone AI-64?
-
If so, what is the recommended way, since
git.ti.com
is not reachable? -
Should I instead flash a TI SDK image (e.g. Processor SDK Linux) onto the board, or can I add the SDK to my existing Debian installation?
-
If flashing is required, is there a BeagleBone AI-64 compatible image that already includes Edge AI SDK 10.0 or 11.0?
Thanks in advance for your guidance.