...
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
|
module list
|
To find out if a module is availablesearch what modules are available to be loaded:
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
|
module spideravail
<software_name> |
To see the entire list of all modules:
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
|
module spider |
To find out if a particular software is in the list of all modules
...
:
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
|
module availspider |
...
To check how to load a particular version of a software
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
|
module showspider <module<software_name>
/<version> |
To load a module:
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
|
module load <module_name>
|
...
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
|
module swap GNU Intel
|
To see what environment variables would be set/changed if you load a specific module:
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
|
module show <module_name>
|
To load a modulefile in a non-standard directory:
...