Run 'conda init' before 'conda activate'
时间: 2023-12-29 16:25:36 浏览: 467
环境配置:利用conda新建虚拟环境的总结
根据引用[1]的报错信息,你需要在运行'conda activate'之前运行'conda init'命令。'conda init'命令用于初始化你的shell,以便正确使用'conda activate'命令。你可以根据你当前使用的shell类型,运行以下命令进行初始化:
- 对于bash shell:`conda init bash`
- 对于fish shell:`conda init fish`
- 对于tcsh shell:`conda init tcsh`
- 对于xonsh shell:`conda init xonsh`
- 对于zsh shell:`conda init zsh`
- 对于powershell:`conda init powershell`
运行以上命令后,你可能需要关闭并重新打开你的shell才能使更改生效。这样,你就可以成功运行'conda activate'命令了。
阅读全文