--------- Packages compiled with OpenMPI and GCC compilers ---------
------------------ System packages compiled with OpenMPI and GCC compilers ------------------
[...]
```
If you are looking for a particular piece of software that you know the name of, rather than rummaging through all the toolchains, you can use the `module spider` subcommand, as the output of `module avail` suggests:
- Site contact: Support <sc@fz-juelich.de>, software responsible Jan Meinke <j.meinke@fz-juelich.de>
```
The problem is that LAMMPS is only available in toolchains which include ParaStationMPI.
The problem is that GROMACS is only available in toolchains which include ParaStationMPI.
We could simply reload the MPI module rather than having to reload the entire toolchain, but this can sometimes come with unintended consequences, where what is loaded in a `module load` command is not necessarily unloaded while swapping modules.
For this reason, we also do not recommend using the `module unload` command, although it is available.
We would recommend to unload (almost) all modules and start with a fresh environment, using `module purge`:
...
...
@@ -202,10 +217,16 @@ We would recommend to unload (almost) all modules and start with a fresh environ
$ module purge
$ module load GCC
$ module load ParaStationMPI
$ module load LAMMPS
$ module load GROMACS
```
:::info
The `module spider` command is **case-insensitive**, meaning you can search for modules using any combination of uppercase or lowercase letters (e.g., `module spider PyTorch` and `module spider pytorch` both work).
In contrast, the `module load` command is **case-sensitive**. You must use the exact capitalization of the module name and version as listed (e.g., `module load GROMACS/2024.3` is correct, while `module load gromacs/2024.3` may fail if the case does not match).
:::
The `module` command is part of the Lmod software package.
It comes with its own help document which you can access by running `module help` and a [user guide is available online](https://lmod.readthedocs.io).