ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Your catkin workspace "remembers" the things you previously sourced. Making it "forget" requires these steps, in this order:
devel
and build
directoriesPeople also call this "doing a clean build".
Note: in general it's unwise to modify your ROS_PACKAGE_PATH env variable in your ~/.bashrc file, but it is especially unwise when the path you are adding is already inside your catkin_ws
directory.
2 | No.2 Revision |
Your catkin workspace "remembers" the things you previously sourced. Making it "forget" requires these steps, in this order:
catkin_ws
, delete the top-level devel
and build
directoriescatkin_make
or catkin build
commandPeople also call this "doing a clean build".
Note: in general it's unwise to modify your ROS_PACKAGE_PATH env variable in your ~/.bashrc file, but it is especially unwise when the path you are adding is already inside your catkin_ws
directory.