From 7115ccf51103359fc2514c1b11df152167fa027d Mon Sep 17 00:00:00 2001 From: Anish Tipnis Date: Fri, 12 Jan 2024 17:09:46 +0530 Subject: [PATCH] Update README.md Update Conda environment creation instructions in README Corrected the command for creating a Conda environment from a YAML file in the project documentation. Replaced the incorrect 'conda create -f' with the correct 'conda env create -f' to align with Conda's command syntax. This update ensures users can successfully set up their development environment following the provided instructions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a622fb..73ee7d6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Anaconda is recommended to create this virtual environment. ```sh - conda create -f environment.yaml + conda env create -f environment.yaml conda activate text2motion_pub ```