For the complete documentation index, see llms.txt. This page is also available as Markdown.

Setting up Common Software on Jetson AGX Orin

TL;DR

In general, we need to install the aarch64 distro of the software, since this device is using the ARM64 ISA.

Install CUDA

CUDA should be included with the Jetpack 6.1 SDK.

To test installation, do

nvcc --version

Install VSCode

When downloading from the official website, select ".deb - Arm64" button.

After download, use the following command to install.

Install MiniForge

Download "Mambaforge-24.9.0-0-Linux-aarch64.sh" from the official release page.

Install PyTorch

PyTorch with CUDA support is not available from the normal pip installation method.

Method 1: install from whl file

Older version of PyTorch can be found here.

First, we need to install dependencies for sparse matrix operation support

Follow instructions here.

also numpy is recommended

Download the PyTorch wheel for JetPack 6.1.

After download, do

Method 2: using docker containers

NVIDIA also provided a couple of preconfigured containers that can be installed with the jetson-container command. Following this instruction.

Edit /etc/docker/daemon.json

If docker fails to start with error message "Failed to start Docker Application Container Engine", use this command to print the error message

Then, do

Testing Installation

Test if installation succeed

Install Jtop

This is a helpful system resource monitor tool, similar to htop and nvidia-smi.

After install, a system restart is required.

Last updated