Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions content/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ We will call the environment `course`.
```console
$ mamba env create -n course -f https://raw.githubusercontent.com/coderefinery/reproducible-python-ml/main/software/environment.yml
```
If this throws an error you can download the ``environmet.yml`` file first
and set up the environment via
```console
$ curl -O https://raw.githubusercontent.com/coderefinery/reproducible-python-ml/main/software/environment.yml
$ mamba env create -n course -f environment.yml
```
:::

:::{group-tab} Linux / MacOS
Expand Down
Loading