Answers for "conda switch to conda base"

4

How do I set Conda to activate the base environment by default?

conda config --set auto_activate_base true
Posted by: Guest on August-11-2020
1

how to activate conda environment on linux terminal

conda create --name <env_name> #this creates the environment
conda activate <env_name> #this activates the environment

#if conda activate <env_name> does not work then try the following
source ~/anaconda3/etc/profile.d/conda.sh
conda activate <env_name>
Posted by: Guest on December-31-2020

Python Answers by Framework

Browse Popular Code Answers by Language