From 25e987d2f05561817ac926f6c480c734255545bc Mon Sep 17 00:00:00 2001 From: Ben Pettit Date: Tue, 10 Dec 2024 06:26:29 +1000 Subject: [PATCH] updated doco to use environment.yml for installing conda dependencies these dependencies were necessary to install via conda rather than pip on macOS ARM. --- doc/getting_started/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/getting_started/installation.rst b/doc/getting_started/installation.rst index b25cdc65..1aa8b2a3 100644 --- a/doc/getting_started/installation.rst +++ b/doc/getting_started/installation.rst @@ -44,7 +44,7 @@ Use the following commands to download the repo, create and activate a conda or .. code-block:: bash - conda create -n "eeg-expy" python=3.8 git pip + conda env create -f environment.yml -n "eeg-expy" conda activate "eeg-expy"