If you already have an existing conda package manager installed, then use it to install mamba into the base environment
conda install mamba -n base -c conda-forgeAlternatively, download and install mambaforge.
Install wdf_workshop conda environment from environment file environment.yml
mamba env create --name wdf_workshop -f environment.ymlActivate the wdf_workshop conda environment, then create a Python kernel and link it to jupyter
conda activate wdf_workshop
python -m ipykernel install --user --name="wdf_workshop"Your python environment is now ready for launching Jupyter lab with the wdf_workshop kernel available for use
jupyter lab