Skip to content

Commit

Permalink
Suggest using mamba over conda (#881)
Browse files Browse the repository at this point in the history
  • Loading branch information
manopapad authored Nov 6, 2023
1 parent 984817e commit 6fa0acc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ Once you have this environment file, you can install the required packages by
creating a new conda environment:

```shell
conda env create -n legate -f <env-file>.yaml
mamba env create -n legate -f <env-file>.yaml
```

or by updating an existing environment:

```shell
conda env update -f <env-file>.yaml
mamba env update -f <env-file>.yaml
```

## Building through install.py
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,15 +218,15 @@ as though they are running on a single processor.
Legate Core is available [on conda](https://anaconda.org/legate/legate-core):

```
conda install -c nvidia -c conda-forge -c legate legate-core
mamba install -c nvidia -c conda-forge -c legate legate-core
```

Only linux-64 packages are available at the moment.

The default package contains GPU support, and is compatible with CUDA >= 12.0
(CUDA driver version >= r520), and Volta or later GPU architectures. There are
also CPU-only packages available, and will be automatically selected by `conda`
when installing on a machine without GPUs.
also CPU-only packages available, and will be automatically selected when
installing on a machine without GPUs.

See [BUILD.md](BUILD.md) for instructions on building Legate Core from source.

Expand Down

0 comments on commit 6fa0acc

Please sign in to comment.