Home Conda Environments
Post
Cancel

Conda Environments

list environments

1
conda env list

creat and remove environments

1
2
# creat the environment named ENV_NAME
conda create --name ENV_NAME python==3.9
1
2
# remove the environment named ENV_NAME
conda remove --name ENV_NAME --all

list of packages in specific env

1
conda list -n ENV_NAME

activate and deactivate env

1
conda activate ENV_NAME
1
conda deactivate

Ref: \

This post is licensed under CC BY 4.0 by the author.