Update install_coral_lxc.sh

This commit is contained in:
MacRimi 2025-02-01 09:01:34 +01:00 committed by GitHub
parent d43c1da440
commit 72c7207ae4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -163,7 +163,7 @@ install_coral_in_container() {
DRIVER_PACKAGE="libedgetpu1-std" DRIVER_PACKAGE="libedgetpu1-std"
fi fi
pct exec "$CONTAINER_ID" -- bash -c " pct exec "$CONTAINER_ID" -- bash -c '
set -e set -e
echo "- Updating package lists..." echo "- Updating package lists..."
@ -186,7 +186,8 @@ apt-get update
echo "- Installing Coral TPU driver ($DRIVER_PACKAGE)..." echo "- Installing Coral TPU driver ($DRIVER_PACKAGE)..."
apt-get install -y $DRIVER_PACKAGE apt-get install -y $DRIVER_PACKAGE
" '
msg_ok "$(translate 'iGPU and Coral TPU drivers installed inside the container.')" msg_ok "$(translate 'iGPU and Coral TPU drivers installed inside the container.')"
} }