From 46b942ba5604dc1129c1d730756c5b288cb75c90 Mon Sep 17 00:00:00 2001 From: joeywwwu Date: Tue, 30 Jan 2024 20:56:39 -0800 Subject: [PATCH] fix: update install instruction - conda create --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 740750d..47cb01c 100644 --- a/README.md +++ b/README.md @@ -34,10 +34,10 @@ Clone a copy of [this repository](https://github.com/UBC-MDS/hexdropper) onto yo #### Setting up a Conda Environment -We recommend creating an isolated conda environment on your local machine to test and develop the package. To create a conda environment for this project, type in the below command in your terminal, replacing `[your_env_name]` with your desired environment name (e.g., hexdropper) +We recommend creating an isolated conda environment on your local machine to test and develop the package. To create a conda environment for this project, type in the below command in your terminal. ``` -$ conda create --name [your_env_name] python=3.9 -y +$ conda create --name hexdropper python=3.9 -y ``` #### Using Poetry for Package Management