ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
When you run source ~/fuerte_workspace/setup.bash
, it only sets things up in the current shell (terminal window). To get things to work every time you start a shell (terminal window), you need to add the line
source ~/fuerte_workspace/setup.bash
to the file .bashrc
in your home directory. This file is executed every time you start a shell.
2 | executed -> sourced |
When you run source ~/fuerte_workspace/setup.bash
, it only sets things up in the current shell (terminal window). To get things to work every time you start a shell (terminal window), you need to add the line
source ~/fuerte_workspace/setup.bash
to the file .bashrc
in your home directory. This file is executed sourced every time you start a an (interactive) shell.