Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 685 Bytes

File metadata and controls

50 lines (35 loc) · 685 Bytes

Install

sha256sum ~/Downloads/Anaconda3-2021.11-Linux-x86_64.sh
bash ~/Downloads/Anaconda3-2021.11-Linux-x86_64.sh

Set the auto_activate_base on

conda config --set auto_activate_base true

Set the auto_activate_base off

conda config --set auto_activate_base false

List all enviroments

conda info --env

Create new enviroment

conda create -n newEnvName python=3.6

Conda delete a enviroment

conda env remove -n [ENV_NAME]

Clean cache

condac clean --all

Export enviroment library

conda env export > env.yaml