ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Delete your catkin_ws/devel directory (and delete catkin_ws/build and install for good measure?), source /opt/ros/jade/setup.bash
, then catkin_make again.
2 | No.2 Revision |
Delete your catkin_ws/devel directory (and delete catkin_ws/build and install for good measure?), source /opt/ros/jade/setup.bash
, then catkin_make in catkin_ws again.
3 | No.3 Revision |
Assuming you have an old catkin_ws/devel/setup.bash: Delete your catkin_ws/devel directory (and delete catkin_ws/build and install for good measure?), source /opt/ros/jade/setup.bash
, then catkin_make in catkin_ws again.
4 | No.4 Revision |
Assuming you have an old catkin_ws/devel/setup.bash: Delete your catkin_ws/devel directory (and delete catkin_ws/build and install for good measure?), source /opt/ros/jade/setup.bash
, then catkin_make in catkin_ws again.
cd ~/catkin_ws
rm -rf devel build install
source /opt/ros/jade/setup.bash
catkin_make
5 | No.5 Revision |
Assuming you have an old catkin_ws/devel/setup.bash: Delete your catkin_ws/devel directory (and delete catkin_ws/build and install for good measure?), rebuild your workspace:
cd ~/catkin_ws
rm -rf devel build install
source /opt/ros/jade/setup.bash
catkin_make
6 | No.6 Revision |
Assuming you have an old catkin_ws/devel/setup.bash: Delete your catkin_ws/devel directory and the src CMakeLists.txt, then rebuild your workspace:workspace.:
cd ~/catkin_ws
rm -rf devel build install
source /opt/ros/jade/setup.bash
cd src
rm CMakeLists.txt
catkin_init_workspace
cd ..
catkin_make
7 | No.7 Revision |
Assuming you have an old catkin_ws/devel/setup.bash: Delete your catkin_ws/devel directory and the src CMakeLists.txt, then rebuild your workspace.:
cd ~/catkin_ws
rm -rf devel build install
source /opt/ros/jade/setup.bash
cd src
rm CMakeLists.txt
catkin_init_workspace
cd ..
catkin_make
If that doesn't work then maybe there is a deeper ros installation issue more information would be needed to solve.