Essential conda Commands You Need to Know
All commands below are demonstrated on Windows.
Entering a conda environment
1
activate
Exiting
1
deactivate
Creating an environment
1
conda create -n
If you’re using python, you’ll need to run
1
conda create -n python
Entering a specific environment
1
conda activate
笔记