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
```
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
```