From 9c8577a3f9edde25df61180c26744c1ef4b72c5e Mon Sep 17 00:00:00 2001 From: Ryan Lane Date: Wed, 14 Aug 2024 11:55:12 -0700 Subject: [PATCH] Update README.md `env` needed in command to create a new environment. Otherwise results in ``` PackagesNotFoundError: The following packages are not available from current channels: - envs/dev.yml ``` Signed-off-by: Ryan Lane --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4925d7c..80bb544 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ For detailed documentation about the package and links to example plots, see the We use poetry to manage dependencies and packaging. First, create a new conda environment and install poetry: ```bash -conda create -n arcadia-pycolor -f envs/dev.yml +conda env create -n arcadia-pycolor -f envs/dev.yml conda activate arcadia-pycolor ```