...
Environment Modules Cheat Sheet.
You will need to replace any occurrence of <software-name>
and/or <version> below with an appropriate name/value.
...
Code Block |
---|
title | Listing all available software |
---|
|
module avail |
...
Modification of your environment (paths & aliases)
To load the default version of a piece of software
...
You will need to replace any occurrence of <software-name>
and/or <version> below with an appropriate name/value.
Code Block |
---|
title | To enable your access to a specific software environment |
---|
|
module load <software-name> |
The default version of a piece of software will usually be a safe (rather than latest) version.
To load a specific version of a piece of software
No Format |
---|
module load <software-name>/<software-version> |
HPC staff recommend this approach as default versions may change with time.
...
/<version>
# Omission of "/<version>" will result in the default version (changes over time) being loaded.
# Note that the default version may be the "safest", rather than the latest, version. |
Code Block |
---|
title | To switch to use of another version of the same piece of software |
---|
|
...
noformat |
module switch <software-name>/<software-version> |
To list changes that would be (or have been) made to your environment from loading a specific module
No Format |
---|
module show <software-name>/<software-version> |
Code Block |
---|
title | To unload a module you |
---|
|
...
...
noformat |
module unload <software-name> |
...
# The specification of a version shouldn't be required |
...
...
noformatmodules you previously loaded |
|
module purge |
Information specific to JCU HPC configuration
...