I currently have miniconda
installed and one virtualenvironment
+ base environment.
conda env list
# conda environments:
#
base * /home/alex/miniconda3
machinelearning /home/alex/miniconda3/envs/machinelearning
As the asterisk suggests curently I am using the base environment. In order to move to machinelearning
environment do I need to activate
the environment again ? Should this be the command to switch to machinelearning
?
conda activate machinelearning
.
Do I need to deactivate
from base first before doing that ?
I also don't understand the difference between deactivate
and remove
an environment.
I read the anaconda documentation on managing environments https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#sharing-an-environment, but did not find anything explaining the differences.