vscode终端显示CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
时间: 2024-04-10 14:25:30 浏览: 157
No suitable java found.In order to properly use the android developer tools...-附件资源
当在VSCode终端中使用conda activate命令时,可能会遇到CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'的错误。这是因为VSCode终端默认使用的是系统的默认shell,而不是你在Anaconda中设置的shell。
要解决这个问题,你可以按照以下步骤进行操作:
1. 打开VSCode,并进入终端。
2. 点击终端窗口右上角的下拉箭头,选择“选择默认shell”。
3. 在弹出的菜单中选择你在Anaconda中设置的shell,比如“Anaconda Prompt”或“Miniconda Prompt”。
4. 重新启动VSCode终端。
这样,当你在VSCode终端中使用conda activate命令时,就不会再出现CommandNotFoundError错误了。
阅读全文