From bc4b9c143441ed3d5b150882772cc5508db074b4 Mon Sep 17 00:00:00 2001
From: Jelle Treep <40466121+jelletreep@users.noreply.github.com>
Date: Wed, 11 Mar 2026 09:13:32 +0100
Subject: [PATCH 1/3] fix directory path in installation instructions
---
book/installation-and-setup.qmd | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/book/installation-and-setup.qmd b/book/installation-and-setup.qmd
index 64581e2..4c7c731 100644
--- a/book/installation-and-setup.qmd
+++ b/book/installation-and-setup.qmd
@@ -112,8 +112,8 @@ Make your choice and click "Ok, and don't show again" button.
2. Find the "Notebook" tab and click on the "Launch" button.
Anaconda will open a new browser window or tab with a Notebook Dashboard showing you the
contents of your Home (or User) folder.
-3. Navigate to the `data` directory by clicking on the directory names leading to it.
-`Desktop`, `python-workshop`, then `data`:
+3. Navigate to the `python-workshop` directory by clicking on the directory names leading to it.
+`Desktop`, `python-workshop`:
4. Launch the notebook called `preparation.ipynb` by clicking on it.
5. Follow the instructions in the notebook to finalize your preparation for the workshop. If the output of the last cell displays 4 version numbers and the words "No errors! Ready to code!" instead of an error message, your installation is successful. If not, contact us at [RDM walk in hours][walk-in-hours] or reply to the welcome email.
From fa9cab74ed7cd1159d8a61abce58e49e2a55e5fd Mon Sep 17 00:00:00 2001
From: Jelle Treep <40466121+jelletreep@users.noreply.github.com>
Date: Wed, 11 Mar 2026 09:37:50 +0100
Subject: [PATCH 2/3] fix code block formatting in setup guide
there are some rendering problems introducing characters in the code block. trying to fix this by removing the {bash} and {sh}
---
book/installation-and-setup.qmd | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/book/installation-and-setup.qmd b/book/installation-and-setup.qmd
index 4c7c731..6838014 100644
--- a/book/installation-and-setup.qmd
+++ b/book/installation-and-setup.qmd
@@ -122,7 +122,8 @@ contents of your Home (or User) folder.
**Unix shell**
If you're using a Unix shell application, such as Terminal app in macOS, Console or Terminal
in Linux, or [Git Bash][gitbash] on Windows, execute the following command:
- ```{bash}
+
+ ```
cd ~/Desktop/python-workshop
```
@@ -131,19 +132,24 @@ contents of your Home (or User) folder.
pressing Windows Logo Key+R, entering `cmd`, and hitting
Return. In the Command Prompt, use the following command to navigate to
the `data` folder:
- ```{sh}
+
+ ```
cd /D %userprofile%\Desktop\python-workshop
```
+
2. Start Jupyter server:
**Unix shell**
- ```{bash}
+
+ ```
jupyter notebook
```
**Command Prompt (Windows)**
- ```{sh}
+
+ ```
python -m notebook
```
+
3. Launch the notebook called `preparation.ipynb` via the 'File' menu.
4. Follow the instructions in the notebook to finalize your preparation for the workshop. If the output of the last cell displays 4 version numbers and the words "No errors! Ready to code!" instead of an error message, your installation is successful. If not, contact us at [RDM walk in hours][walk-in-hours] or reply to the welcome email.
:::
From ad1c20d27c3c39f4b7e62a9eb8bddda49fa30564 Mon Sep 17 00:00:00 2001
From: Jelle Treep <40466121+jelletreep@users.noreply.github.com>
Date: Wed, 11 Mar 2026 10:02:59 +0100
Subject: [PATCH 3/3] Update navigation instructions in installation guide
Clarified instructions for navigating to the python-workshop directory.
---
book/installation-and-setup.qmd | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/book/installation-and-setup.qmd b/book/installation-and-setup.qmd
index 6838014..5aabb64 100644
--- a/book/installation-and-setup.qmd
+++ b/book/installation-and-setup.qmd
@@ -112,8 +112,7 @@ Make your choice and click "Ok, and don't show again" button.
2. Find the "Notebook" tab and click on the "Launch" button.
Anaconda will open a new browser window or tab with a Notebook Dashboard showing you the
contents of your Home (or User) folder.
-3. Navigate to the `python-workshop` directory by clicking on the directory names leading to it.
-`Desktop`, `python-workshop`:
+3. Navigate to the `python-workshop` directory by clicking on the directory names leading to it, e.g. `Desktop`, then `python-workshop`.
4. Launch the notebook called `preparation.ipynb` by clicking on it.
5. Follow the instructions in the notebook to finalize your preparation for the workshop. If the output of the last cell displays 4 version numbers and the words "No errors! Ready to code!" instead of an error message, your installation is successful. If not, contact us at [RDM walk in hours][walk-in-hours] or reply to the welcome email.