Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 733 Bytes

conda-cli.md

File metadata and controls

37 lines (28 loc) · 733 Bytes

Conda CLI cheatsheet

There are many commands of Conda, and things could get complicated. Though, I find myself repeatly using the below commands.

The list could be appended. For now, you might just be just fine only knowing the below Git commands:

Basics

  1. List all available environment
conda env list
  1. Create new environment
conda create --name <env-name> python=3.x --yes
  1. Conda activate a specific environment
conda activate <env-name>
  1. Conda deactivate a specific environment
conda deactivate <env-name>
  1. List all installed package and their version in the active environment
conda list
  1. Delete an environment
conda env remove --name <env-name>