Conda - Environment Commands

Bash

Commands for working with Conda environments

Creating Environment:
conda create --name your_env_name

Activating Environment:
conda activate your_env_name

Installing a Library in Current Environment:
conda install -c library-name

Update a Library in Current Environment:
conda update library-name

Display a List of the Libraries Installed in Current Environment:
conda list
Did you find this snippet useful?

Sign up for free to to add this to your code library