Anaconda3-5.0.1-MacOSX-x86_64.pkg
[注意] (2020/05/03 追記) macOS catalina (10.15.x) から デフォルトのシェルが bash から zsh に変更になりました。 したがって、シェルの初期設定ファイルは ~/.bash_profile から ~/.zshenv に変更になりました。 2020/05/03 現在、anaconda はこの変更に対応していないようです。 この場合は、手動で ~/.bash_profile に追加された anaconda に関する記述を ~/.zshenv に コピーして下さい。
~/.zshenv への追加 |
# >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/opt/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" if [ $? -eq 0 ]; then eval "$__conda_setup" else if [ -f "/opt/anaconda3/etc/profile.d/conda.sh" ]; then . "/opt/anaconda3/etc/profile.d/conda.sh" else export PATH="/opt/anaconda3/bin:$PATH" fi fi unset __conda_setup # <<< conda initialize <<< |