diff --git a/BUILD.md b/BUILD.md index 6a380fe66..ce52e3baf 100644 --- a/BUILD.md +++ b/BUILD.md @@ -27,7 +27,7 @@ specific cluster is not covered, you may be able to adapt an existing workflow. The primary method of retrieving dependencies for Legate Core and downstream libraries is through [conda](https://docs.conda.io/en/latest/). You will need an installation of conda to follow the instructions below. We suggest using -the [mamba](https://github.com/mamba-org/mamba) implementation of the conda +the [conda](https://github.com/conda/conda) implementation of the conda package manager. Please use the `scripts/generate-conda-envs.py` script to create a conda @@ -47,13 +47,13 @@ Once you have this environment file, you can install the required packages by creating a new conda environment: ```shell -mamba env create -n legate -f .yaml +conda env create -n legate -f .yaml ``` or by updating an existing environment: ```shell -mamba env update -f .yaml +conda env update -f .yaml ``` ## Building through install.py