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 websitearrow-up-right, select ".deb - Arm64" button.

After download, use the following command to install.

Install MiniForge

Download "Mambaforge-24.9.0-0-Linux-aarch64.sharrow-up-right" from the official release pagearrow-up-right.

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 herearrow-up-right.

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

Follow instructions herearrow-up-right.

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 instructionarrow-up-right.

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

circle-exclamation

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