Skip to content

Instantly share code, notes, and snippets.

View fishBone000's full-sized avatar

F.B. fishBone000

View GitHub Profile
@fishBone000
fishBone000 / IsaacROS-3.2-Setup-OrinNano.md
Last active June 11, 2026 05:49
Isaac ROS 3.2 setup on Jetson Orin Nano

Isaac ROS 3.2 setup on Jetson Orin Nano

Intro

Dependency management is a bit hellish on Jetson. I tried to build up the dev env natively (apt + pip on Jetson host, without docker), then there was constant dependency mismatch on numpy, matplotlib, pytorch...

Isaac ROS is shipped in Docker favor (which is recommended by NVIDIA official), plus they have some good looking demoes.

Therefore I represent you my ways of setting up the Isaac ROS, to prevent you from falling into the hurdles.

#include<stdio.h>
#include<stdlib.h>
#define MAX 4096
int h2d(char *p){
int result = 0;
for(int i = 1; i > -1; i--){
if(*p >= '0' && *p <= '9')
result += (*p - '0')*(i?16:1);
else if(*p >= 'a' && *p <= 'f')