create env from yml code example
Example 1: conda create environment python 3.6
conda create -n myenv python=x.x
Example 2: conda list environments
conda info --envs
Example 3: conda write environment.yml
conda env export > environment_droplet.yml
Example 4: create env from yml
conda env create --name envname --file=environments.yml