husarion / rosbot_ros

ROS packages for ROSbot 2, 2R and 2 PRO

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Noetic Simulation

CKarlGrech opened this issue · comments

I followed the installation process for the simulations in Noetic, however when I run the final "catkin cmake" command, the workspace is not built as it says that the folders: "rosbot_bringup", "rosbot_controller", "rosbot description", "rosbot" and "rosbot_gazebo" are homegenous folders.

How can I solve this issue please?

Thank you

Hello @CKarlGrech,
From the information I can see, it's hard for me to pinpoint the cause of the problem. Below are some suggestions that may help you solve the problem.

  1. I would ask you to check if the branch version is compatible with your ROS version.
  2. The correct build command is catkin_make (not catkin cmake).
  3. Try removing the content of the workspace, add the src folder and build an empty workspace.

Best regards,
RG

I had the same issue as @CKarlGrech
My problem was that, when cloning the repo on local, the branch is still on the default one (humble) and thus cannot build the package as it does not correspond to a ROS1 one.
Try:
cd ~/ros_workspace/src/rosbot_ros
git checkout noetic

Then you can build the noetic branch of the repo.
Best,

Thank you @CBeaune .

We have updated the readme!
#72
Best,
JD

Thank you both for the help