I have recently been pulling my hair out trying to organize my conda environments. I ended up reinstalling miniconda and I'm in a good spot.
My question is this, when I run conda env list
I get:
# conda environments:
#
base * /Users/rheft/miniconda3
sonny36 /Users/rheft/miniconda3/envs/sonny36
I would expect "root" to be included here. Further more when I look at my conda environments from inside jupyter notebooks there are 3 environments listed.
root -- /Users/rheft/miniconda3
miniconda3 -- /Users/rheft/miniconda3
sonny36 -- /Users/rheft/miniconda3/envs/sonny36
My question is why is it that root
doesn't show when I run conda env list
? Although everything works correctly, I would like to remove the duplicated environment if possible, any suggestions?
Many thanks!