This tutorial will get you ready to run Isaac apps on a Carter robot and x86 machine.
Set up an account at https://catalog.ngc.nvidia.com/.
Contact your NVIDIA admin to be added to the Isaac 2.0 org (ea-isaac).
After you are granted access, you will receive an invite link in an Email to confirm membership in the Isaac 2.0 org
Obtain an API Key, which will be necessary to download the Docker containers from NGC.
NOVA Init is a Debian package that sets up the sensors and Jetson device on the Carter robot. Follow the instructions below to install NOVA Init using the NGC client.
Download and install the NGC client using the following commands:
wget --content-disposition https://ngc.nvidia.com/downloads/ngccli_arm64.zip && unzip ngccli_arm64.zip && chmod u+x ngc-cli/ngc s="export PATH=\"\$PATH:$(pwd)/ngc-cli\""; f="$HOME/.bashrc"; grep -qxF "$s" $f || echo "$s" | tee -a $f && source $f
Configure the NGC client to give access to Isaac resources. Use the API key that was generated in the Setting up an NGC Account and Getting the API Key section to run the following:
ngc config set
Download NOVA Init from NGC using the following command:
ngc registry resource download-version "<your-staging-area>/nova_init"
Once the
nova-init
Debian package is downloaded, change directory to the download folder and install it:cd $(ls -td nova_init_v* | head -1) sudo apt install ./nova-init_*_arm64.deb
Connecting the Robot to your WiFi Network
Follow these steps to connect the Carter robot to the local WiFi network:
Connect the robot to a display using the HDMI port on the rear interface panel.
Connect the robot to the wired Ethernet Port (using an RJ45 connector) on the rear interface panel.
Connect the keyboard with touchpad to the rear interface panel.
Log in to the robot (contact the NVIDIA Solutions team for the robot password).
Follow the WiFi instructions for Ubuntu.
Connecting the PC to the Robot
To control, deploy, launch, and debug applications, you have to connect your PC to the robot.
First, you must get the IP address of the robot. Assuming you have the robot connected to a display and a keyboard with touchpad from the previous section, follow these instructions:
Use
CTRL+ALT+t
to open a terminal.Find the IP address of the WiFi by running
ifconfig wlan0
. You should see an output similar to the screenshot below. The IP address is highlighted with a red rectangle.Record the IP address (in above case it is
10.110.66.127
). This IP address will be used for connecting in all further tutorials and may need to be retrieved again if it changes.SSH into the robot:
bob@jetson:~/isaac$ ssh ROBOTUSER@ROBOT_IP
Use a computer that is connected to the same WiFi network as your robot
Assuming you are on a Linux computer, open a terminal with
CTRL+ALT+t
and runssh <USER>@<ROBOT_IP>
. In the above case, it would bessh nvidia@10.110.66.127
.Enter the password to log in to the robot (contact the NVIDIA Solutions team for the robot password). The tutorials/tools in the following sections will be run from this SSH connection.
NoteThe login will timeout for security reasons. Also, the HDMI will turn off after a while due to inactivity, so retry if the screen goes black.
Connecting the Joystick Controller
A PS5 joystick controller is shipped paired with the robot. To connect the paired controller to Carter, press the PS button on the PS5 controller, as shown below.

Once the controller is connected, the LEDs on the controller should stay solid blue; flashing blue LEDs indicate the controller is trying to connect.
If the controller LEDs continue flashing, the controller is attempting to connect to a paired device. If the controller is not paired with the robot, the blue LEDs will blink for a minute and stop. The easiest way to pair the controller again is by connecting it to the robot by cable. Use the details in this section to pair the controller.
The Isaac joystick application allows you to test out the robot’s movement with remote controls. It is provided as a Docker container.
Before running the joystick application, make sure the joystick is turned on and connected to the robot, as described above.
Run the following command on the robot to pull the Docker container and try the joystick application:
docker run -it --gpus all --rm --network=host --privileged \
-v /dev:/dev \
-v /sys:/sys \
nvcr.io/<your_staging_area>/robot_remote_control_segway:isaac_2.0-aarch64
Replace <your_staging_area>
with your assigned NGC Registry staging
area.
You should hear the Carter beep, indicating that you can now move it around. To move the robot, press and hold the L1 button and use the thumbsticks to navigate manually. The robot is configured to move at a maximum speed of 1.1m/s to ensure safe operation.

To stop the app, Press Ctrl+C
on the PC.
Exercise caution using the controller. Test it first in an enclosed space before taking the robot into an open space.
After testing the Joystick application, you are ready to try out various use cases with this robot.
Isaac 2.0 features the following use cases:
Map Creation
Autonomous Navigation
The tutorial sections will walk you through these workflows.