conda create environments code example
Example 1: conda create environment
conda create -n myenv python=3.6
Example 2: conda env
conda create -n myenv python=3.6
Example 3: conda create environment from file
conda env create -f environment.yml
Example 4: make a new environment conda
conda create -n test_env python=3.6.3 anaconda