I am trying to install Anaconda on my Linux machine. Right or wrong, at the end of the instructions they say to
add this line to the file .bashrc in your home directory: export PATH="/home/username/anaconda/bin:$PATH"
I do not know much of how the PATH in bash works. But, I have another PATH in my .bashrc file:
export PATH="/usr/local/share/rsi/idl/bin:$PATH"
How am I supposed to add the new path?
{PATH}
. Why is that different? – Py-ser Feb 09 '16 at 10:57${path}
- it will append the previously defined or other exported paths as well! – KKD Feb 09 '16 at 11:15