Closed nlitz88 closed 6 months ago
You know what--I ran into more issues with the CUDA version...and it dawned on me that maybe Isaac ROS doesn't support Jetpack 6 yet. https://forums.developer.nvidia.com/t/isaac-ros-for-jetpack-6/276172 answers my question. Sorry for the spam!
Hi There!
When I try to build the
isaac_ros_common
package from within the container started byrun_dev.sh
, I get the following error:(built with the command
colcon build --packages-up-to isaac_ros_common
)Looking at that error message, I figured the container must not have access to whatever directory vpi's
.cmake
file lives in, so I did some poking around. I noticed that lines 172 and 173 ofrun_dev.sh
mount the volume containing the vpi library--but are mounting directories for vpi2.We are currently using an AGX Orin with Jetpack 6--which it seems comes with vpi3 installed. Therefore, those directories mounted above don't exist on Jetpack 6 (unless we screwed something up along the way--quite possible lol).
When I update those paths to
it builds like a charm. I should also note, though, that the
/usr/share/vpi3
directory doesn't actually exist on the host OS--so not sure why that wouldn't matter here but...In any case: Does it look like our jetpack installation is somehow screwed up, or is this a problem that needs addressed for the
run_dev.sh
script?