anaconda安装时需要添加的环境变量

sudo gedit ~/.bashrc
# <<< conda initialize <<<
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/fyo/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
    eval "$__conda_setup"
else
    if [ -f "/home/fyo/anaconda3/etc/profile.d/conda.sh" ]; then
        . "/home/fyo/anaconda3/etc/profile.d/conda.sh"
    else
        export PATH="/home/fyo/anaconda3/bin:$PATH"
    fi
fi
unset __conda_setup
# <<< conda initialize <<<
source ~/.bashrc

你可能感兴趣的:(ubuntu,python,linux)