(ROS Noetic) catkin_make fails, as workspace contains non-ros packages #171
-
Hello, I am trying to build mkdir -p ~/catkin_ws/src
cd ~/catkin_ws/src
git clone --recursive -b ros --depth 1 https://github.com/stella-cv/stella_vslam_ros.git
cd ~/catkin_ws/
rosdep install -y -i --from-paths ~/catkin_ws/src --skip-keys=stella_vslam
catkin_make -j specifically,
I have tried running rosrun stella_vslam_ros run_slam ... I get an error that the node/executable could not be found
What could be going wrong here? I was unable to find a similar issue/question/discussion to this, so I am sorry if this is a duplicate. Kind regards. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Is there any WARNING? |
Beta Was this translation helpful? Give feedback.
Hello, please excuse my late reply. I found that I have accidentally cloned
stella_vslam
into~/catkin_ws/src
instead of~/lib
, which was the cause of this issue.The Problem is thereby resolved.
Thank you very much for your answer.