Create Installation/Environment authored by Sven Michael Lechner's avatar Sven Michael Lechner
We provide a [conda](https://anaconda.org/anaconda/conda) environment that includes all required packages with resolved version conflicts. To install it, simply run
```shell
$ conda env create -n <NAME> -f environment.yml
```
To activate it for your current shell, run
```shell
conda activate <NAME>
```
> ⚠️ For a faster installation, you can take advantage of the `libmamba` dependency resolution algorithm. From our experience, this significantly speeds up the environment creation.
>
> ```shell
> $ conda install -n base conda-libmamba-solver
> $ conda config --set solver libmamba
> ```
\ No newline at end of file