existing conda environment code example
Example 1: conda create environment based on requirements.txt
# using pip
pip install -r requirements.txt
# using Conda
conda create --name <env_name> --file requirements.txt
Example 2: make a new environment conda
conda create -n test_env python=3.6.3 anaconda