- Make sure you have Anaconda installed
- In a terminal where you can run Anaconda commands, run
conda env create --file environment.yaml
to make the Conda virtual environment - Next, activate the conda environment
conda activate uciml
- Finally, to link the virtual environment with Jupyter Notebook/Lab, run
python -m ipykernel install --user --name=uciml
- Start JupyterLab by running
jupyter lab
All done!
To update the conda environment, run conda env update --name uciml --file .\environment.yaml