# using pip
pip install -r requirements.txt
# using Conda
conda create --name <env_name> --file requirements.txt
#Using yaml
conda env create -f environment.yml
#Listing env
conda env list
#Create env with python36
conda create -n myenv python=3.6