Conda info --envs doesn't list all my environments

When I run the code,

conda info --envs

      

it lists three environments, but I know I have more conditions because when I activate other environments (which I remember) they work.

Is this a sign that something is wrong with my conda environment? Is there a way to fix this?

I am running windows 10 system python 3.5 installed

+3


source to share


1 answer


If the environments that are not listed are in some non-standard location, you can always add them to the list of directories to search for:



conda config --append envs_dirs /path/to/directory/containing/other/environments

      

+6


source







All Articles