Skip to content

Manage your Environment

Using Modules to manage your environment

Modules are used to manage different software envionments on the cluster. module avail will list available modules on the cluster, and they can be added to your environment using module load $modulename.

As an example, to compile an OpenMPI program:

module load openmpi
mpicc -o hello hello_world.c

Modules can also be included in your job scripts to configure the job environment.