From 1c765db28fe279fc590bd2d12d530bdded7aad74 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Mon, 14 Aug 2023 12:49:44 +0100 Subject: [PATCH] Correct conda activate commands in building from sources docs [skip ci] (#4065) --- docs/development/building-from-sources.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/building-from-sources.md b/docs/development/building-from-sources.md index 63ee988c3..d78e14824 100644 --- a/docs/development/building-from-sources.md +++ b/docs/development/building-from-sources.md @@ -95,7 +95,7 @@ You would need a working native compiler toolchain, enough to build Then install the required Python version and other build dependencies in a separate conda environment, conda env create -f environment.yml - conda activate conda-forge + conda activate pyodide-env ``` ```{tab-item} MacOS with conda @@ -109,7 +109,7 @@ You would need, Then install the required Python version and other build dependencies in a separate conda environment, conda env create -f environment.yml - conda activate conda-forge + conda activate pyodide-env ```