diff --git a/docs/developer_guide/documentation.md b/docs/developer_guide/documentation.md index 1d22363cb6..20a4be04fd 100644 --- a/docs/developer_guide/documentation.md +++ b/docs/developer_guide/documentation.md @@ -187,6 +187,21 @@ pip install --editable .[docs] cd docs ``` +> **Note:** If you are using Linux or MacOS, you'll have to install [**Pandoc**](https://pandoc.org/) as a dependency. Install it using the following command: +> +> If you're using any Debian based system, you can use the following command to install Pandoc: +> ```bash +> sudo apt install pandoc +> ``` +> +> If you're using MacOS, you can use the following command to install Pandoc: +> ```bash +> brew install pandoc +> ``` +> +> For all other operating systems, please checkout the [Pandoc installation guide](https://pandoc.org/installing.html). +> + 3. To build the website locally, run: ```powershell