From ef857eacd4be56686c215f56f603803d6aa1f840 Mon Sep 17 00:00:00 2001 From: Lukas Kluft <lukas.kluft@mpimet.mpg.de> Date: Mon, 3 Jun 2024 14:07:20 +0200 Subject: [PATCH] Fix mamba env create example --- slides.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides.qmd b/slides.qmd index 8d373d6..86d5542 100644 --- a/slides.qmd +++ b/slides.qmd @@ -169,7 +169,7 @@ This makes the environment easier to reproduce, to test, and to maintain. * Interactively create and populate a virtual environment ```{raw} - mamba create -n my_env python=3.12 + mamba create -n my_env -c conda-forge python=3.12 mamba activate my_env mamba install matplotlib numpy scipy eccodes ``` -- GitLab