Ubuntu下conda环境激活失败

文章目录

    • 情况说明
    • 解决

情况说明

在使用conda创建好的环境时,出现了下面这个问题:
CommandNotFoundError: Your shell has not been properly configured to use ‘conda activate’.
To initialize your shell, run

$ conda init 

Currently supported shells are:

  • bash
  • 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’.

解决

这种情况是本机conda的base环境没有进行激活,可以观察到命令行前是没有(base)的,所以需要使用命令激活conda的基本环境,然后再激活自己创建的环境即可。
激活conda基本环境:
source activate 在windows下直接使用activate即可。
source deactivate 关闭conda基本环境,Windows直接使用deactivate

激活完基本环境就可以使用 conda activate yourEnvName了。

你可能感兴趣的:(python学习)