sudo ./src/catkin/bin/catkin_make_isolated command not found

asked 2019-03-19 03:04:28 -0500

somang gravatar image

updated 2019-03-19 04:05:54 -0500

gvdhoorn gravatar image

(we followed this url and we done 3.2.2) http://wiki.ros.org/ROSberryPi/Instal...

$ mkdir -p ~/ros_catkin_ws/external_src
$ cd ~/ros_catkin_ws/external_src
$ wget http://sourceforge.net/projects/assimp/files/assimp-3.1/assimp-3.1.1_no_test_models.zip/download -O assimp-3.1.1_no_test_models.zip
$ unzip assimp-3.1.1_no_test_models.zip
$ cd assimp-3.1.1
$ cmake .
$ make
$ sudo make install
$ cd ~/ros_catkin_ws
$ rosdep install -y --from-paths src --ignore-src --rosdistro kinetic -r --os=debian:stretch

--------------- (I successed.)

$ sudo ./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release --install-space /opt/ros/kinetic

and then...we got problem like this

sudo: ./src/catkin/bin/catkin_make_isolated : command not found
edit retag flag offensive close merge delete

Comments

I ran into the same problem with Melodic... command not found..

Stigma gravatar image Stigma  ( 2019-08-04 23:37:51 -0500 )edit

Hi, I have the same problem. Did you find the solution for this issue ?

Madhushi gravatar image Madhushi  ( 2020-03-24 19:36:45 -0500 )edit

If the Catkin package does not exist in the workspace, you cannot invoke it. That would seem to be expected.

The command sudo ./src/catkin/bin/catkin_make_isolate .. is only used when building your initial ROS bootstrapping workspace. After that is finished, you should be able to invoke catkin_make_isolated normally, without having a source checkout in your workspace.

gvdhoorn gravatar image gvdhoorn  ( 2020-03-25 05:36:38 -0500 )edit

Thank you for your answer :)

Madhushi gravatar image Madhushi  ( 2020-03-25 09:37:32 -0500 )edit