2025-02-11 19:08:13 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
2025-04-12 16:25:35 +03:00
|
|
|
hailo_version="4.20.1"
|
2025-02-11 19:08:13 +03:00
|
|
|
|
|
|
|
|
if [[ "${TARGETARCH}" == "amd64" ]]; then
|
|
|
|
|
arch="x86_64"
|
|
|
|
|
elif [[ "${TARGETARCH}" == "arm64" ]]; then
|
|
|
|
|
arch="aarch64"
|
|
|
|
|
fi
|
|
|
|
|
|
2025-04-12 16:50:17 +03:00
|
|
|
wget -qO- "https://github.com/frigate-nvr/hailort/releases/download/v${hailo_version}/hailort-debian12-${TARGETARCH}.tar.gz" | tar -C / -xzf -
|
2025-02-11 19:08:13 +03:00
|
|
|
wget -P /wheels/ "https://github.com/frigate-nvr/hailort/releases/download/v${hailo_version}/hailort-${hailo_version}-cp311-cp311-linux_${arch}.whl"
|