Solve the problem of entering the base environment every time you open the terminal after installing anaconda

Solve the problem of entering the base environment every time you open the terminal after installing anaconda

Problem Description

After installing anaconda or miniconda, the base environment will be automatically activated every time you open the terminal of the Linux system.
Cause Analysis

When installing anaconda or miniconda, I chose to automatically activate the base environment every time I open the terminal.

solution

Set in the conda configuration to cancel the automatic activation of the base environment:

conda config --set auto_activate_base false

Guess you like

Origin blog.csdn.net/m0_45388819/article/details/109452860
Recommended