https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
Create a folder somewhere to store your conda "recipes" and put the datasci.yml file in it. Open it in a text editor and you'll quickly see what it is and is going to do.
conda env create -f datasci.yml
conda activate datasci
# See what packages are installed (it's a bunch)
conda list
I usually get back into the base conda env
# Back to base
conda deactivate
conda create --name chime --clone datasci
conda activate chime
pip install .
# Confirm penn_chime installed
conda list
You can run their cli app by just being in whatever directory you want to be working in and then
# See their help text
penn_chime -h
# Run using a config file - easiest
penn_chime --file yourconfigfile.cfg
You can also use my sim_chime_scenario_runner.py script.
You can use Jupyter notebooks and do imports of my script and/or imports of penn_chime modules. My script obviously imports such modules.