Stop Conda from automatically activating the base environment?
I am experiencing slow performance on my PC when using Conda, so I am considering disabling the automatic activation of the base environment in Kali.
we can do this using only one command. The command is...,
conda config --set auto_activate_base false
- The conda config command is used to modify Conda configuration settings.
- The --set option is used to set a configuration variable to a specific value.
- auto_activate_base is a configuration variable that determines whether or not Conda will automatically activate the base environment when a new shell is opened.
- Setting auto_activate_base to false disables automatic activation of the base environment.
- By default, auto_activate_base is set to true, meaning that Conda will automatically activate the base environment when a new shell is opened.
- Disabling automatic activation of the base environment can help improve Conda performance by reducing the resources used by Conda.
- If you need to activate the base environment for a specific task or project, you can do so manually using the conda activate command.
Comments
Post a Comment