We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d4a60d commit 1d36007Copy full SHA for 1d36007
README.md
@@ -23,8 +23,17 @@ We **highly recommend** to install OpenMP. Parts of the code are parallelized an
23
24
On Linux, you can use the following command:
25
```bash
26
-sudo apt-get install libomp-dev
27
-```
+# Alpine
+sudo apk add openmp-dev libgomp
28
+# Ubuntu
29
+sudo apt-get install libomp-dev libgomp1
30
+# Debian
31
+sudo apt-get install gcc libomp-dev libomp5 libgomp1
32
+# ArchLinux
33
+sudo pacnam -S openmp
34
+ln -s libomp.so libomp.so.5
35
+```
36
+We have tested this on docker, so it might be a little different on your system.
37
38
On MacOS, you can use the following command:
39
0 commit comments