‘source‘ 不是内部或外部命令,也不是可运行的程序 或批处理文件。

在使用 conda activate Python37 激活python环境的时候,出现了错误:
CommandNotFoundError: Your shell has not been properly configured to use ‘conda activate’.
在采用 之前的解决方法 解决这个问题的时候,在用 source activate 时,出现了新的问题:
‘source’ 不是内部或外部命令,也不是可运行的程序
或批处理文件。

然后发现,直接使用
activate Python37 可以直接激活python环境

如果还是不可以,

  1. 使用 conda info --envs 查看需要激活的python环境的地址
  2. 使用 conda activate 激活python环境

你可能感兴趣的:(Python,python)