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>
时间: 2023-09-22 07:09:22 浏览: 155
这是一个错误提示信息,意思是你的命令行未正确配置以使用“conda activate”。如果你正在使用一个批处理脚本,并想要使用“conda activate”,则需要将其调用改为“call conda.bat activate”。如果你想初始化你的命令行,需要运行以下命令:$ conda init <shell_name>。
相关问题
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'.
这个错误通常是因为conda未正确配置到系统环境变量中。您可以尝试在命令行中手动添加conda的路径到环境变量中,或者重新安装conda并选择添加到系统环境变量中。您还可以尝试运行以下命令来修复此错误:
```
conda init <SHELL_NAME>
```
其中,<SHELL_NAME> 是您正在使用的shell的名称,例如bash或zsh。这将在您的shell配置文件中添加必要的设置。如果您不确定您正在使用的shell是什么,请尝试运行以下命令:
```
echo $SHELL
```
这将显示您当前正在使用的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'。"
阅读全文