Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • autotools
  • prun
  • gnu7
  • openmpi3

Which Modules to Load for Codes

...

On the main cluster page is a listing of codes currently installed on the cluster. For many of the codes, the last column shows the environment module commands which must be run to use that code. Some codes will require more than one environment module. And occasionally you will need to run an additional non-module command as shown in the last column of the codes listing.

...

Commands for Environment Modules

...

List currently loaded modules

Code Block
languagebash
$ module list

List modules available to load

Code Block
languagebash
$ module avail

Load a module

Code Block
languagebash
$ module load <package1> <package2> ...

Unload a module

Code Block
languagebash
$ module unload <package1> <package2> ...

Swap loaded modules

Code Block
languagebash
$ module swap <swapping_out_package> <swapping_in_package>

Display module help information

Code Block
languagebash
$ module help <packageName>

Search for a module where the name contains a string

Code Block
languagebash
$ module avail <string_to_search_in_name>

Display module whatis description

Code Block
languagebash
$ module whatis <packagename>

Module keyword search of help message and whatis description

Code Block
languagebash
$ module keyword <word1> <word2> ...