From 27915b2b5a0b2606d600d72468ad1bd985272344 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Fri, 30 Jan 2026 16:28:23 +0200 Subject: [PATCH] Revert "Mamba -f does not like URLs" This reverts commit b7094c3771fc2dbeea56904d66332dd233eb373b. Issue https://github.com/mamba-org/mamba/issues/3867 is solved. --- content/conda.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/content/conda.md b/content/conda.md index 0ef8138..c24ccb9 100644 --- a/content/conda.md +++ b/content/conda.md @@ -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 ``` ::: @@ -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 ``` ::: ::::