Anaconda commands
16 Jan 2019In this post, I will explain some useful commands in Anaconda. Using Anaconda, you can manage various environments conveniently.
Commands
- Make new environment with the specified name.
conda create --name NAME python=3.6
- Show all environments available.
conda env list
- Activate an environment with the specified name.
source activate NAME