Use the NPU from Docker
Installing Docker on your development board
# Install Docker
sudo apt update
sudo apt install -y docker.io
# Add your current user to the 'docker' group, so you can run Docker commands without needing sudo
sudo usermod -aG docker $USER
newgrp docker
# Verify that the installation works
docker run hello-world
# Hello from Docker!
# This message shows that your installation appears to be working correctly.Installing the CDI, and running your first application
Tips & tricks
Base container
Last updated