how to create an anaconda environment code example
Example 1: conda create environment
conda create -n myenv python=3.6
Example 2: how to make a conda environment
conda create --name myenv
#to activate environment:
conda activate myenv
Example 3: create an environment in conda
conda create --name myenv
Example 4: how to see all the environments in Conda
conda env list