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
8 changes: 3 additions & 5 deletions content/conda.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ We will call the environment `coderefinery`.
Then type
(without the `$`):
```console
$ curl "https://raw.githubusercontent.com/coderefinery/software/main/environment.yml" -o environment.yml
$ mamba env create -n coderefinery -f environment.yml
$ mamba env create -n coderefinery -f https://raw.githubusercontent.com/coderefinery/software/main/environment.yml
```
:::

Expand All @@ -157,10 +156,9 @@ We will call the environment `coderefinery`.
automatically initialize conda?", but then it will always be
active).

In the second step, we will install the software environment by first copying the definition file:
In the second step, we will install the software environment:
```console
$ curl "https://raw.githubusercontent.com/coderefinery/software/main/environment.yml" -o environment.yml
$ mamba env create -n coderefinery -f environment.yml
$ mamba env create -n coderefinery -f https://raw.githubusercontent.com/coderefinery/software/main/environment.yml
```
:::
::::
Expand Down
Loading