Jack
Jack

Reputation: 1232

Is the conda tool installed in the base environment or out of it?

When I try to update conda, I was told to execute conda update -n base conda, does this mean that the conda tool is installed in the base environment? Or the conda tool is installed out of any environment?

Upvotes: 1

Views: 163

Answers (1)

merv
merv

Reputation: 76950

Yes. On all typical1 distributions it is always installed in the base environment.2 One can check all environments with the conda package installed with:

conda search --envs conda

It is possible to be installed elsewhere, in addition to base, but the base copy will be the default when not available in the currently activated environment.


[1]: Anaconda, Miniconda, and Miniforge variants.

[2]: In older Anaconda installations, base was previously termed root.

Upvotes: 2

Related Questions