Hello, On the Ubuntu 22.04 x86_64 Following the installation instructions here: Isaac ROS 3.1 setup. When i run ./scripts/run_dev.sh -d ${ISAAC_ROS_WS}
Welcome to the forum and thanks for the post!
Seems like the package nvv4l2 is not being installed correctly in you container.
You can try running this command again with no cache to force a clean download and rebuild. ./scripts/run_dev.sh -d ${ISAAC_ROS_WS} --no-cache
Although this will make the build take significantly longer.
With this command it will force Docker to re-run apt-get update and attempt to install nvv4l2 with the absolute latest package lists.
If the nvv4l2 package is successfully found this time, the build will complete, and you will have a new image named isaac-ros-dev:3.1.(Please change to the name you want.)
If the manual build with --no-cache still fails, you can bypass the immediate failure by temporarily commenting out the failing line and installing the package manually inside the running container after the build completes.
I’ve tried building directly with the Docker command as suggested. However, it still fails to locate the nvv4l2 package. I also tried running apt-get update && apt-get install -y nvv4l2 directly inside the container, and I get the same response.
In addition, I noticed that when attempting to install packages RUN --mount=type=cache,target=/var/cache/apt apt-get update && apt-get install -y nghttp2=1.43.0-1ubuntu0.2 openssh-client=1:8.9p1-3ubuntu0.10 libcurl3-gnutls=7.81.0-1ubuntu1.20 libc-bin=2.35-0ubuntu3.8
is unable to find or install these specific version, succeeds when the version numbers are not specified.
I have another question regarding the setup steps for my Intel RealSense D455 camera. After running: cd ${ISAAC_ROS_WS} && \ colcon build --symlink-install --packages-up-to-regex realsense*
And when I try to detect the camera using: realsense-viewer
I get the following output:
12/11 17:36:29,692 INFO [126900765786112] (context.cpp:116) … 4-4-2
12/11 17:36:29,692 INFO [126900765786112] (context.cpp:116) … 3-11-5
12/11 17:36:29,692 INFO [126900765786112] (context.cpp:128) Found 2 RealSense devices (0xff requested & 0xff from device-mask in settings)
But the left panel in the viewer does not show any connected camera. Did I miss a step in the setup, or is something else wrong?