+2 votes
in Operating Systems by (40.5k points)

Whenever I open the terminal, it shows (base) for the conda's base environment. Is there any command to deactivate it on startup?

1 Answer

+2 votes
by (350k points)
selected by
 
Best answer

If you want conda's base environment NOT to be activated on startup, set the auto_activate_base parameter to false using the following command:

conda config --set auto_activate_base false

If you want conda's base environment to be activated on startup, set the auto_activate_base parameter to true using the following command:

conda config --set auto_activate_base true

Related questions

+3 votes
1 answer
+1 vote
1 answer
asked Sep 20, 2022 in Programming Languages by kush (40.5k points)
+2 votes
1 answer
asked Aug 14, 2018 in General IT Tips by pythonuser (74.2k points)

...