ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Rosdep dependency error

asked 2015-01-21 19:04:58 -0500

Freyr gravatar image

I'm trying to add the arbotix stack to my raspberry pi jessie/indigo setup and rosdep is failing to resolve the following

ERROR: the following packages/stacks could not have their rosdep keys resolved
to system dependencies:
warehouse_ros: No definition of [mongodb] for OS [debian]
diagnostic_common_diagnostics: No definition of [libsensors4-dev] for OS [debian]

Both of these are installed via apt-get but that does not seem to satisfy rosdep. I'm at a loss as to how I can resolve these. Do I have to get the source directly and build them?

I'm using the following to resolve the dependencies

rosdep install --from-paths src --ignore-src --rosdistro indigo -y --os=debian:jessie
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2015-01-22 01:56:05 -0500

gvdhoorn gravatar image

Here are the relevant rosdep rules for libsensors4-dev (from rosdep/base.yaml):

libsensors4-dev:
  arch: [lm_sensors]
  fedora: [lm_sensors-devel]
  ubuntu: [libsensors4-dev]

and for mongodb (again from rosdep/base.yaml):

mongodb:
  fedora: [mongodb]
  ubuntu: [mongodb]

As you can see, there are no stanzas for debian, which is why rosdep is failing. The fact that you installed them via apt-get is irrelevant, as rosdep does not know what the package name is on your OS, and thus cannot find it in the list of installed packages.

The proper course of action here would be to contribute those rosdep rules. For that, see Contributing rosdep rules.

edit flag offensive delete link more

Comments

Operation was a success. Pull request made. Life is good again, many thanks.

Freyr gravatar image Freyr  ( 2015-01-22 19:51:37 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2015-01-21 19:04:58 -0500

Seen: 1,793 times

Last updated: Jan 22 '15