From b3309dfabc96f8a5ea7af5bbe54d9c1ffa1de66c Mon Sep 17 00:00:00 2001 From: Gregor Decristoforo Date: Wed, 1 Oct 2025 10:25:29 +0200 Subject: [PATCH] Update installation instructions for environment setup Added instructions for downloading environment.yml manually. --- content/installation.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/installation.md b/content/installation.md index d53ea68..1a86461 100644 --- a/content/installation.md +++ b/content/installation.md @@ -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