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-17 22:54:55 浏览: 322
这是一个错误提示,意思是你的shell没有正确配置使用'conda activate'。如果你在批处理脚本中使用'conda activate',请将调用改为'call conda.bat activate'。要初始化你的shell,请运行$ conda init <shell_name>。目前支持的shell有:bash、cmd.exe、fish、tcsh、xonsh、zsh、powershell。更多信息和选项,请参见'conda init --help'。重要提示:在运行'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'.
这个错误通常是因为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'。"
阅读全文