Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

anaconda

When I run the code,

conda info --envs

it lists three environments, but I know I have more environments because when I activate other environments (that I remember creating), it works.

Is this an indication that something is wrong with my conda environments? Is there a way to fix it?

I'm running a windows 10 system. python 3.5 installed

like image 329
Bell Avatar asked Apr 15 '17 01:04

Bell


1 Answers

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

conda config --append envs_dirs /path/to/directory/containing/other/environments
like image 51
Nehal J Wani Avatar answered Oct 05 '22 17:10

Nehal J Wani