diff --git a/README.md b/README.md
index b1cbe57ef330bd9407a98c44ea600effb6807094..d4b9ea8af5b1eedfc7839fe169ccf3c2cf5504ab 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,13 @@
 # N Body Simulation
 
 This code simulates particles under self-gravity. The forces are calculated via direct summation or with a tree and multipole expansion. 
+
 Most of the code is written in C++, Python is used to make plots and animations. OpenMP is used for parallelisation. 
 
+## Install OpenMP
+
+https://www.geeksforgeeks.org/openmp-introduction-with-installation-guide/
+
 ## Make build directory
 
 ```
@@ -11,9 +16,9 @@ nbody$ cd build
 nbody/build$ cmake ..
 ```
 
-## Compiling and running the simulation
+## Compiling and running the program
 
 ```
 nbody/build$ make
 nbody/build$ ./nbody
-```
\ No newline at end of file
+```