I'm running Miniconda and have a question regarding conda update conda
.
In this thread, some answer is (and that's what works) that conda
needs to be updated in the base environment. However, it is possible to also install conda
in a custom environment and then run conda update conda
. My questions are:
- Do I need to install
conda
in each new environment or is it "passed through" somehow from the base environment? - If I do install
conda
in a new environment, do I have to update it manually, or will it always be the same version as in base?
Reason behind: I want to use a software called brightway2
. In the manual it says:
"To upgrade Brightway2, do the following: First, make sure your background packages are up to date. In anaconda/miniconda, use the following commands (once you have activated your environment):
conda update conda conda update -c conda-forge -c cmutel -c haasad brightway2 bw2data bw2io bw2calc bw2analyzer
I'm stumbling upon the "(once you have activated your environment)", which is not possible with updating conda
in the base environment.