how to find saved 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: conda env
conda create -n myenv python=3.6
Example 3: how to see all the environments in Conda
conda env list