not found: local_setup.bash
I created a test workspace. Now i deleted that, because i dont need it anymore.
I had the workspace automatically sourced in my ~/.bashrc
: /home/luca/workspace/test_ws/install/setup.bash
. Now i deleted that again from my ~/.bashrc
.
Still when i open a terminal i get this message
not found: "/home/luca/workspace/test_ws/install/local_setup.bash"
not found: "/home/luca/workspace/test_ws/install/local_setup.bash"
How can i solve this?
Maybe you also wrote it in your /etc/bash.bashrc file.
i checked
etc/bash.bashrc
file and der is nosource
in there.Hm, ok you could execute
cd ~ && cat .bashrc | grep source
andcd /etc && cat bash.bashrc | grep source
to see which ROS related files are sourced. I am assuming that you are using the bash shellecho $SHELL
?cd ~ && cat .bashrc | grep source
cd /etc && cat bash.bashrc | grep source
echo $SHELL
I would just comment out all the sourcing lines, to see if they are part of the problem.
Right now there is three times the
not found
. I commented out the last three sourcesthen the
not found
disappears. For each source one disappears.Is there a way the source them without executing the
"/home/luca/workspace/test_ws/install/local_setup.bash"
?