I have a trouble using catkin build when I enter thar command it says command not found, however catkin_make does work.
I am currently using ros kinetic
Asked by abhilash on 2017-07-07 11:36:43 UTC
Answers
Try this:
sudo apt-get update
sudo apt-get install python-catkin-tools
This has all been documented. In fact, the first Google result for "catkin tools install" is Installing catkin_tools.
As @ahendrix added: catkin_tools
is not installed by default, so you'll have to do that manually.
Asked by gvdhoorn on 2017-07-07 12:04:59 UTC
Comments
catkin_make
is installed by default;catkin build
is still in beta and is not installed by default.Asked by ahendrix on 2017-07-07 17:17:04 UTC