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

What is the correct way to install ROS pakages??

asked 2016-06-10 05:16:27 -0500

Anshul Paigwar gravatar image

For installing packages made by others, I download their repositories from github as zip. Then I extract them to catkin_ws/src folder. Then I use catkin make to build the package. Generally, all the packages work fine by this method but is this correct method to install all kind of packages??

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
0

answered 2016-06-10 06:27:21 -0500

ROSkinect gravatar image

updated 2016-06-10 06:32:52 -0500

Yes it is, catkin_make is the way to build your workspace within ROS, you can also compile one or multiple packages:

$ catkin_make --pkg "my_package_name"

Or

$ catkin_make --pkg "package 1" "package 2"

And you can compile your package manually:

Check this link for more

EDIT:

From dornhege remark:

$ cd catkin_ws/src/
$ git clone "Put the link here"
$ cd ..
$ catkin_make
edit flag offensive delete link more
0

answered 2016-06-10 06:16:22 -0500

dornhege gravatar image

You can just clone them into the catkin_ws/src folder.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2016-06-10 05:16:27 -0500

Seen: 550 times

Last updated: Jun 10 '16