Could not find conda environment

(base) C:\Users***********>conda activate myenv
Could not find conda environment: myenv
You can list all discoverable environments with conda info --envs
However, when python is typed in CLI.

(base) C:\Users************>python
Python 3.8.8 (default, Apr 13 2021, 15:08:03) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type “help”, “copyright”, “credits” or “license” for more information.

The (base) before the prompt indicates that you already have the base-environment activated, so the python executable can be found by CMD/Windows. Therefore, typing python will work.

Did you create an environment named myenv? Can you post the outpot of conda info --envs here? (use 3 backward quotes for a code block)

1 Like