CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. If using 'conda activate' from a batch script, change your invocation to 'CALL conda.bat activate'.
时间: 2023-09-22 13:08:07 浏览: 74
这个错误是由于你的shell没有正确配置conda的环境变量所致。你需要在你的shell中运行以下命令来配置conda的环境变量:
对于Windows系统:
```bash
conda init <SHELL_NAME>
```
<SHELL_NAME>应该替换为你在使用的shell的名称,如“bash”或“zsh”。
对于Linux或Mac系统:
```bash
conda init
```
如果你已经运行了这个命令并且仍然遇到同样的错误,请尝试重新启动你的shell或者重启你的计算机,看看是否解决了这个问题。
相关问题
commandnotfounderror: your shell has not been properly configured to use 'conda activate'. if using 'conda activate' from a batch script, change your invocation to 'call conda.bat activate'.
"commandnotfounderror: 您的 shell 没有正确配置使用 'conda activate'。如果从批处理脚本使用 'conda activate',请将调用更改为 'call conda.bat activate'。"
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. If using 'conda activate' from a batch script, change your invocation to 'CALL conda.bat activate'. To initialize your shell, run $ conda init <SHELL_NAME>
这是一个错误提示信息,意思是你的命令行未正确配置以使用“conda activate”。如果你正在使用一个批处理脚本,并想要使用“conda activate”,则需要将其调用改为“call conda.bat activate”。如果你想初始化你的命令行,需要运行以下命令:$ conda init <shell_name>。
阅读全文