I wanted to use anaconda python in Linux without adding it to path (I don't want to set is as default python).
I used to simply set an alias for commands that I use in .bashrc like alias condapython="~/anaconda3/bin/python"
. This is sometimes hard to use!
So I'm looking for another way. What I need is a command to run whenever I need to use anaconda.
Can I for example run source ~/anaconda3/bin/activate
? I mean, is anaconda python nothing more than a virtual environment?
Or you suggest something else?