diff --git a/web/content/docs/devguide/development-workflows/setup-fork.md b/web/content/docs/devguide/development-workflows/setup-fork.md
index ac786ef05559dd1e420a561e697955dea607ba05..48fc6361de8ccf75e8f3527a524891926ebe7dae 100644
--- a/web/content/docs/devguide/development-workflows/setup-fork.md
+++ b/web/content/docs/devguide/development-workflows/setup-fork.md
@@ -104,6 +104,31 @@ cd ogs
 pre-commit install
 ```
 
+You will also need to install `clang-format`:
+
+<div class='win'>
+
+Install clang (which contains `clang-format`) with the [official installer](https://prereleases.llvm.org/win-snapshots/LLVM-12.0.0-6923b0a7-win64.exe)
+
+</div>
+
+<div class='linux'>
+
+```bash
+sudo apt-install clang-format
+```
+
+</div>
+
+<div class='mac'>
+
+```bash
+brew install clang-format
+```
+
+</div>
+
+
 ## Optional: Working on a new feature
 
 You only have to follow the above steps once. From then on, whenever you want to work on a new feature, you can more easily interact with the remote repositories.