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

Revision history [back]

click to hide/show revision 1
initial version

One thing ROS is excellent is minimizing pain regarding installation.

In your case, assuming you've downloaded source code of the package you want to use along with some more packages you think you need, you may be 1) missing more dependency and/or 2) have incorrectly built your some packages.

Assuming you're on Ubuntu and ROS Indigo, for 1), go to the top directory of your catkin workspace where the packages above are downloaded. E.g. in a lot of tutorials, it is ~/catkin_ws. So cd ~/catkin_ws. If you don't know what catkin workspace, please go back to the basic ROS tutorial. Then run:

rosdep install --from-paths src --ignore-src -r -y

This command magically installs all the packages that packages in catkin workspace depend upon but are missing in your computer.

You seem to be troubled by rgbd_launch you downloaded source code of. But with the steps above, its binary should be installed so that you wouldn't have to download source and build by yourself.

One thing ROS is excellent is minimizing pain regarding installation.

In your case, assuming you've downloaded source code of the package you want to use along with some more packages you think you need, you may be 1) missing more dependency and/or 2) have incorrectly built your some packages.

Assuming you're on Ubuntu and ROS Indigo, for 1), go to the top directory of your catkin workspace where the packages above are downloaded. E.g. in a lot of tutorials, it is ~/catkin_ws. So cd ~/catkin_ws. If (if you don't know what catkin workspace, please go back to the basic ROS tutorial. ). Then run:

rosdep install --from-paths src --ignore-src -r -y

This command magically installs all the packages that packages in catkin workspace depend upon but are missing in your computer.

You seem to be troubled by rgbd_launch you downloaded source code of. But with the steps above, its binary should be installed so that you wouldn't have to download source and build by yourself.

One thing ROS Great amount of effort is excellent is minimizing pain regarding installation.made for making package installation less and less painful for ROS.

In your case, assuming you've downloaded source code of the package you want to use along with some more packages you think you need, you may be 1) missing more dependency and/or 2) have incorrectly built your some of your packages.

Assuming you're on Ubuntu and ROS Indigo, for For 1), go to the top directory of your catkin workspace where the packages above are downloaded. E.g. in a lot of tutorials, it is ~/catkin_ws. So cd ~/catkin_ws (if you don't know what catkin workspace, please go back to the basic ROS tutorial). Then run:

rosdep install --from-paths src --ignore-src -r -y

This command magically installs all the packages that packages in catkin workspace depend upon but are missing in your computer.

You seem to be troubled by rgbd_launch you downloaded source code of. But with the steps above, its binarypre-built binary of that package should be installed so that you wouldn't have to download source and build by yourself.

yourself, thus you're free from 2).

All assuming that you're on Ubuntu and ROS Indigo.

Great amount of effort is made for making package installation less and less painful for ROS.

In your case, assuming you've downloaded source code of the package you want to use along with some more packages you think you need, you may be 1) missing more dependency and/or 2) have incorrectly built some of your packages.

For 1), go to the top directory of your catkin workspace where the packages above are downloaded. E.g. in a lot of tutorials, it is ~/catkin_ws. So cd ~/catkin_ws (if you don't know what catkin workspace, please go back to the basic ROS tutorial). Then run:

rosdep install --from-paths src --ignore-src -r -y

This command magically installs all the packages that packages in catkin workspace depend upon but are missing in your computer.computer (documented on wiki as well).

You seem to be troubled by rgbd_launch you downloaded source code of. But with the steps above, its pre-built binary of that package should be installed so that you wouldn't have to download source and build by yourself, thus you're free from 2).

All assuming that you're on Ubuntu and ROS Indigo.