how to set env for new project in miniconda code example
Example 1: conda create environment based on requirements.txt
# using pip
pip install -r requirements.txt
# using Conda
conda create --name --file requirements.txt
Example 2: how to see all the environments in Conda
conda env list