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> Currently supported shells are: - bash - cmd.exe - 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'.
时间: 2023-07-12 17:33:25 浏览: 118
这错误提示是因为你的 shell 没有正确的配置使用 `conda activate` 命令。你可以尝试运行以下命令来初始化你的 shell:
```
conda init <SHELL_NAME>
```
在上面的命令中,<SHELL_NAME> 应该替换为你正在使用的 shell 的名称,比如 bash、zsh 等等。如果你不确定你正在使用的是哪个 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'.
这个错误是因为您的命令行环境没有正确配置`conda activate`命令。如果您正在使用批处理脚本,请将调用更改为`CALL conda.bat activate`。您需要确保已正确安装Conda并且已将其添加到系统路径中。您可以尝试通过运行以下命令来解决此问题:
```
conda init <SHELL_NAME>
```
其中`<SHELL_NAME>`是您正在使用的Shell的名称,例如bash或zsh。如果您仍然遇到问题,请参考Conda文档或寻求进一步的帮助。
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'。"
阅读全文