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