Hello,
I’m trying to set up Isaac ROS on a Jetson Orin Nano Super Developer Kit following the official Getting Started guide for release-3.3:
https://nvidia-isaac-ros.github.io/v/release-3.3/getting_started/index.html
I configured the Isaac ROS APT repository using the instructions under “Configure Isaac ROS Apt Repository” (US CDN):
k=“/usr/share/keyrings/nvidia-isaac-ros.gpg”
curl -fsSL https://isaac.download.nvidia.com/isaac-ros/repos.key | sudo gpg --dearmor | sudo tee -a $k > /dev/null
f=“/etc/apt/sources.list.d/nvidia-isaac-ros.list” && sudo touch $f
s=“deb [signed-by=$k] https://isaac.download.nvidia.com/isaac-ros/release-3 jammy release-3.3”
grep -qxF “$s” $f || echo “$s” | sudo tee -a $f
sudo apt-get update
apt-get update produces the following warning
W: Skipping acquire of configured file 'release-3.3/binary-arm64/Packages' as repository 'https://isaac.download.nvidia.com/isaac-ros/release-3 jammy InRelease' doesn't have the component 'release-3.3' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'release-3.3/i18n/Translation-en' as repository 'https://isaac.download.nvidia.com/isaac-ros/release-3 jammy InRelease' doesn't have the component 'release-3.3' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'release-3.3/i18n/Translation-en_US' as repository 'https://isaac.download.nvidia.com/isaac-ros/release-3 jammy InRelease' doesn't have the component 'release-3.3' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'release-3.3/dep11/Components-arm64.yml' as repository 'https://isaac.download.nvidia.com/isaac-ros/release-3 jammy InRelease' doesn't have the component 'release-3.3' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'release-3.3/dep11/icons-48x48.tar' as repository 'https://isaac.download.nvidia.com/isaac-ros/release-3 jammy InRelease' doesn't have the component 'release-3.3' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'release-3.3/dep11/icons-64x64.tar' as repository 'https://isaac.download.nvidia.com/isaac-ros/release-3 jammy InRelease' doesn't have the component 'release-3.3' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'release-3.3/dep11/icons-64x64@2.tar' as repository 'https://isaac.download.nvidia.com/isaac-ros/release-3 jammy InRelease' doesn't have the component 'release-3.3' (component misspelt in sources.list?)
Inspecting the repository metadata
curl -s https://isaac.download.nvidia.com/isaac-ros/release-3/dists/jammy/InRelease | grep ^Components
shows
Components: legacy-release-3.0 legacy-release-3.1 release-3.0
It looks like release-3.3 is not listed in the metadata.
Is the current repository intentionally only exposing these releases? Any clarification on this and advice on whether I should fall back to an older release would be appreciated.