在开发板上安装 Docker
首先,在开发板上安装 Docker。在开发板上打开终端,然后:安装 CDI 并运行您的第一个应用程序
安装说明和端到端示例请参见 qc-ai-test-docs-examples/docker/。在开发板上打开终端,然后:-
克隆仓库:
- 按照 README.md 中的说明操作。
提示与技巧
基础容器
为获得最佳效果,请使用与主机操作系统相同的基础容器(ubuntu:24.04)。Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
# 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.
git clone https://github.com/edgeimpulse/qc-ai-test-docs-examples
cd qc-ai-test-docs-examples/docker
ubuntu:24.04)。此页面对您有帮助吗?
