
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
nemo镜像是NVIDIA NeMo框架的容器化版本,专为Jetson平台设计,用于语音识别(ASR)、自然语言处理(NLP)和文本转语音(TTS)任务。基于CUDA、PyTorch等深度学习依赖构建,支持多种JetPack/L4T版本,提供便捷的部署和开发环境。
nemo | |
|---|---|
| 构建状态 | |
| 依赖要求 | L4T ['>=32.6'] |
| 依赖项 | https://github.com/dusty-nv/jetson-containers/tree/master/packages/build/build-essential https://github.com/dusty-nv/jetson-containers/tree/master/packages/cuda/cuda https://github.com/dusty-nv/jetson-containers/tree/master/packages/cuda/cudnn https://github.com/dusty-nv/jetson-containers/tree/master/packages/build/python https://github.com/dusty-nv/jetson-containers/tree/master/packages/numpy https://github.com/dusty-nv/jetson-containers/tree/master/packages/build/cmake/cmake_pip https://github.com/dusty-nv/jetson-containers/tree/master/packages/onnx https://github.com/dusty-nv/jetson-containers/tree/master/packages/pytorch https://github.com/dusty-nv/jetson-containers/tree/master/packages/pytorch/torchvision https://github.com/dusty-nv/jetson-containers/tree/master/packages/llm/huggingface_hub https://github.com/dusty-nv/jetson-containers/tree/master/packages/build/rust https://github.com/dusty-nv/jetson-containers/tree/master/packages/llm/transformers https://github.com/dusty-nv/jetson-containers/tree/master/packages/pytorch/torchaudio https://github.com/dusty-nv/jetson-containers/tree/master/packages/numba |
| Dockerfile | https://github.com/dusty-nv/jetson-containers/tree/master/packages/nemo/Dockerfile |
| 镜像列表 | https://hub.docker.com/r/dustynv/nemo/tags (2023-11-05, 1.9GB)https://hub.docker.com/r/dustynv/nemo/tags (2023-09-11, 7.1GB)https://hub.docker.com/r/dustynv/nemo/tags (2023-09-24, 7.1GB)https://hub.docker.com/r/dustynv/nemo/tags (2023-08-29, 6.9GB)https://hub.docker.com/r/dustynv/nemo/tags (2023-12-15, 9.2GB) |
| 注意事项 | 在JetPack 4上,Dockerfile会替换为Dockerfile.jp4 |
| 仓库/标签 | 日期 | 架构 | 大小 |
|---|---|---|---|
| https://hub.docker.com/r/dustynv/nemo/tags | 2023-11-05 | arm64 | 1.9GB |
| https://hub.docker.com/r/dustynv/nemo/tags | 2023-09-11 | arm64 | 7.1GB |
| https://hub.docker.com/r/dustynv/nemo/tags | 2023-09-24 | arm64 | 7.1GB |
| https://hub.docker.com/r/dustynv/nemo/tags | 2023-08-29 | arm64 | 6.9GB |
| https://hub.docker.com/r/dustynv/nemo/tags | 2023-12-15 | arm64 | 9.2GB |
容器镜像兼容其他次要版本的JetPack/L4T:
• L4T R32.7容器可在其他L4T R32.7版本(JetPack 4.6+)上运行
• L4T R35.x容器可在其他L4T R35.x版本(JetPack 5.1+)上运行
要启动容器,可以使用https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md和https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag,或手动组合https://docs.docker.com/engine/reference/commandline/run/命令:
bash# 自动拉取或构建兼容的容器镜像 jetson-containers run $(autotag nemo) # 或显式指定上述容器镜像之一 jetson-containers run dustynv/nemo:r36.2.0 # 或使用'docker run'(指定镜像和挂载等) sudo docker run --runtime nvidia -it --rm --network=host dustynv/nemo:r36.2.0
https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md会将参数转发给https://docs.docker.com/engine/reference/commandline/run/,并添加一些默认值(如`--runtime nvidia
、挂载/data`缓存、检测设备)
https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag会找到与您的JetPack/L4T版本兼容的容器镜像——本地镜像、从仓库拉取的镜像或构建的镜像。
要将本地目录挂载到容器中,使用https://docs.docker.com/engine/reference/commandline/run/#volume或https://docs.docker.com/engine/reference/commandline/run/#volume标志:
bashjetson-containers run -v /主机路径:/容器路径 $(autotag nemo)
要启动容器并运行命令(而非交互式shell):
bashjetson-containers run $(autotag nemo) my_app --abc xyz
您可以传递任何https://docs.docker.com/engine/reference/commandline/run/支持的选项,它会在执行前打印出完整的命令。
如果如上所示使用https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag,必要时会提示您构建容器。要手动构建,首先完成https://github.com/dusty-nv/jetson-containers/tree/master/docs/setup.md,然后运行:
bashjetson-containers build nemo
上述依赖项将构建到容器中,并在构建过程中进行测试。使用https://github.com/dusty-nv/jetson-containers/tree/master/jetson_containers/build.py查看构建选项。
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务