catkin_make install
What does catkin_make install do. And should I run catkin_make install after catkn_make every time?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
What does catkin_make install do. And should I run catkin_make install after catkn_make every time?
catkin_make install
is described here: http://wiki.ros.org/catkin/Tutorials/...
It is used to produce an "installed" version of one or more packages. When you are developing, you can use the devel
space, so you do not need to run it every time. install
is used when you are going to distribute your package for others to use, especially if you plan on creating binary packages. If your package is solely for you to use, then you can ignore install
and probably be happy. If you want others to use your package, you should add installation directives to your CMakeLists.txt
files and ensure that catkin_make install
produces a correct install space. This will allow others to actually install your package to their system rather than having to clone the source into every workspace they want to use it in.
Asked: 2017-04-20 15:52:33 -0500
Seen: 29,759 times
Last updated: Apr 20 '17
Strange thing in the early "building a ROS package" tutorial
Compilation error when moving a package to an other workspace [closed]
Nodes with same name in different packages
Invoking "make cmake_check_build_system" failed
How to start for a slam system
CMake error while executing catkin_make on Ubuntu 14.04 with ROS Jade