From 3924806d7d069bf55b4486ff36618a0f149b2580 Mon Sep 17 00:00:00 2001 From: Olaf Mersmann Date: Thu, 25 Jul 2024 12:40:58 +0200 Subject: [PATCH] Update conda update command Change flag to update subcommand to the correct --file. Fixes #2326. --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 59376f335..54f3eb686 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -33,7 +33,7 @@ Say you already have a conda environment named `foo` that you want to reuse beca Then, once you've activated the environment, you can run ```sh -conda update -f env.yaml +conda update --file env.yaml ``` and it will install all the required development dependencies into your existing environment.