From ec4fe5377d926f2b2557c9a418f1550bea1d1896 Mon Sep 17 00:00:00 2001 From: Suman Debnath <56056673+debnsuma@users.noreply.github.com> Date: Tue, 2 Apr 2024 16:51:11 -0400 Subject: [PATCH] fixing the README for python setup under appendix-A (#102) * fixing the README for python setup under appendix-A * fixing the README for python setup under appendix-A --- appendix-A/01_optional-python-setup-preferences/README.md | 4 ++-- appendix-A/02_installing-python-libraries/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appendix-A/01_optional-python-setup-preferences/README.md b/appendix-A/01_optional-python-setup-preferences/README.md index 89be954..4b3f425 100644 --- a/appendix-A/01_optional-python-setup-preferences/README.md +++ b/appendix-A/01_optional-python-setup-preferences/README.md @@ -45,7 +45,7 @@ conda config --set solver libmamba ## 2. Create a new virtual environment -After the installation was successfully completed, I recommend creating a new virtual environment called `dl-fundamentals`, which you can do by executing +After the installation was successfully completed, I recommend creating a new virtual environment called `LLMs`, which you can do by executing ```bash conda create -n LLMs python=3.10 @@ -58,7 +58,7 @@ conda create -n LLMs python=3.10 Next, activate your new virtual environment (you have to do it every time you open a new terminal window or tab): ```bash -conda activate dl-workshop +conda activate LLMs ``` activate-env diff --git a/appendix-A/02_installing-python-libraries/README.md b/appendix-A/02_installing-python-libraries/README.md index ee567c9..bed073f 100644 --- a/appendix-A/02_installing-python-libraries/README.md +++ b/appendix-A/02_installing-python-libraries/README.md @@ -14,7 +14,7 @@ pip install -r requirements.txt Then, after completing the installation, please check if all the packages are installed and are up to date using ``` -python_environment_check.py +python python_environment_check.py ```