sudo ./src/catkin/bin/catkin_make_isolated command not found
(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
I ran into the same problem with Melodic... command not found..
Hi, I have the same problem. Did you find the solution for this issue ?
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 invokecatkin_make_isolated
normally, without having a source checkout in your workspace.Thank you for your answer :)