Bright:Modules Enviroment

From Define Wiki
Revision as of 13:26, 27 February 2014 by Michael (talk | contribs) (Created page with "== Modules Environment == A module is a file used to set up the Paths in linux to allow the use of some software. The modules environment is a third party piece of software....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Modules Environment

A module is a file used to set up the Paths in linux to allow the use of some software. The modules environment is a third party piece of software.


Adding or Removing a Module

module list #List the currently loaded modules

module avail #List the available modules of loading

module load <module name 1> <module name 2>


As an example this would load the gcc, openmpi and openblas modules:

module add shared
module add gcc
module add openmpi/gcc
module add openblas/nehalem
mpicc -o myapp myapp.c

Using Local or Shared Modules

Creating a New Module