ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Try to source the ROS environment parameters
echo "source <path_to_workspace>/devel/setup.bash" >> ~/.bashrc
Close the current terminal and run a new one. You should see the node in the list. If you don't want to close the current terminal, do this:
source ~/.bashrc
Note: Pimentel answer is also correct, but you have to do it everytime you open a new terminal. If you added the source command to the bashrc, it will be loaded automatically.
2 | No.2 Revision |
Try to source the ROS environment parameters
echo "source <path_to_workspace>/devel/setup.bash" >> Close the current terminal and run a new one. You should see the node in the list. If you don't want to close the current terminal, do this:
source Note: Pimentel answer is also correct, but you have to do it everytime you open a new terminal. If you added the source command to the bashrc, it will be loaded automatically.