dotfiles/source/50_anaconda.sh

16 lines
230 B
Bash

# anaconda
if [ -d "$HOME/anaconda/bin" ]; then
green='\033[0;32m'
NC='\033[0m' # No Color
echo -e "${green}[dotfiles] anaconda available to activate - aconda{NC}"
export PATH="$HOME/anaconda/bin:$PATH"
fi