conda activate
を実行したところ以下のエラーが発生したので,そのときの対処をメモ.
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run
$ conda init <SHELL_NAME>
Currently supported shells are:
- bash
- fish
- tcsh
- xonsh
- zsh
- powershell
See 'conda init --help' for more information and options.
IMPORRANT: You may need to close and restart your shell after running 'conda init'.
エラーメッセージに従って conda init
を実行し,ターミナルを再起動するも再びエラー.
conda init zsh
(私のシェルの環境がzsh
のため) を実行し,ターミナルを再起動すると正常に動作することができました.
zsh
の部分を上記のCurrently supported shells are:
から各個人の環境に合わせて選択し,書き換えればうまくいくと思います.