diff --git a/burn-book/src/getting-started.md b/burn-book/src/getting-started.md
index 1359c3362c..73305eb46f 100644
--- a/burn-book/src/getting-started.md
+++ b/burn-book/src/getting-started.md
@@ -20,7 +20,7 @@ Cargo, which was installed with Rust. In the directory of your choice, run
cargo new my_burn_app
```
-This will create the `my_burn_app` project directory. Head inside with
+This will create the `my_burn_app` project directory. Head inside with
```console
cd my_burn_app
@@ -78,3 +78,10 @@ Tensor {
While the previous example is somewhat trivial, the upcoming
[basic workflow section](./basic-workflow/README.md) will walk you through a much more relevant
example for deep learning applications.
+
+## Running examples
+
+Burn uses HuggingFace's [datasets](https://huggingface.co/docs/datasets/index) library to load
+datasets. `datasets` is a Python library, and therefore, in order to run examples, you will need to
+install Python. Follow the instructions on the [official website](https://www.python.org/downloads/)
+to install Python on your computer.