Conda cheat sheet

Create new environment:

conda create --name sandbox python=3.5

Create the environment from the environment.yml file:

conda env create -f environment.yml

Activate specific environment:

source activate sandbox

Export your active environment to a new file:

conda env export > environment.yml

Remove specific environment:

conda env remove --name sandbox

 

Leave a Reply

Your email address will not be published. Required fields are marked *