Updated documentation

This commit is contained in:
2020-01-23 16:43:12 +01:00
parent 6169b7a8dc
commit b12846e82a
8 changed files with 551 additions and 292 deletions

View File

@ -34,14 +34,14 @@ Also, you can load multiple packages at once. This can be useful for instance wh
```bash
# Single line
module load gcc/8.3.0 openmpi/3.1.3
module load gcc/9.2.0 openmpi/3.1.5_merlin6
# Multiple line
module load gcc/8.3.0
module load openmpi/3.1.3
module load gcc/9.2.0
module load openmpi/3.1.5_merlin6
```
In the example above, we load ``openmpi/3.1.3`` but we also specify ``gcc/8.3.0`` which is a strict dependency. The dependency must be
In the example above, we load ``openmpi/3.1.5_merlin6`` but we also specify ``gcc/9.2.0`` which is a strict dependency. The dependency must be
loaded in advance.
---