解决CommandNotFoundError: Your shell has not been properly configured to use ‘conda activate’
·
问题
当使用conda时遇到报错
conda activate base
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.
IMPORTANT: You may need to close and restart your shell after running 'conda init'.
解决方法
按照提示执行命令conda init bash
,新开一个窗口,看下是否成功。
若不成功,可能是因为conda配置问题,按照以下步骤进行解决:
- 执行
source activate
- 执行
source deactivate
- 执行
conda activate env_name(你的环境名称)
,查看是否成功 - 将命令加入到~/.bashrc文件中,每次自动执行
source activate
source deactivate
更多推荐
所有评论(0)