how to make conda environment code example
Example 1: conda create environment
conda create -n myenv python=3.6
Example 2: conda list environments
conda info --envs
Example 3: how to make a conda environment
conda create --name myenv
#to activate environment:
conda activate myenv
Example 4: create an environment in conda
conda create --name myenv
Example 5: creating a new enviroment in conda
conda create -n myenv python=3.6
Example 6: make a new environment conda
conda create -n test_env python=3.6.3 anaconda