How to check which package depends on ros-kinetic-librealsense2
Hi, I stumbled upon an annoying problem. I'm building quite big docker image containing robot's workspace. Docker build process fails on step where I'm trying to resolve and install missing dependencies using rosdep
. Looks like one of the packages depends on ros-kinetic-librealsense2
package which simply does not exists and kills my building process.
I'm getting:
apt: command [sudo -H apt-get install -y ros-kinetic-librealsense2] failed
apt: Failed to detect successful installation of [ros-kinetic-librealsense2]
How to locate that problematic package? I tried
rosdep which-depends
but it returns nothing.
Thx!
Using grep to search your code base for any occurrence of the string
librealsense2
would probably a good way to start.From the root of your code base will show you a list of files which contain that string.
Thx, I did that, but in fact I checked for "ros-kinetic-librealsense2". I didn't knew that dependencies are defined without "ros-kinetic" prefix, so I received nothing.