Using Modules
CCV uses the LMOD package for managing the software environment on OSCAR. The advantage of the modules approach is that it allows multiple versions of the same software to be installed at the same time. With the modules approach, you can "load'' and "unload'' modules to dynamically control your environment.
Check out our tutorial on using modules on Oscar!
Module commands
command | |
| Lists all modules that are currently loaded in your software environment. |
| Lists all available modules on the system. Note that a module can have multiple versions. |
| Prints additional information about the given software. |
| Adds a module to your current environment. If you load using just the name of a module, you will get the default version. To load a specific version, load the module using its full name with the version: "module load gcc/6.2" |
| Removes a module from your current environment. |
| Prints programs made available by a module |
Finding modules
The module avail
command allows searching modules based on partial names. For example:
will list all available modules whose name starts with "bo".
Output:
This feature can be used for finding what versions of a module are available.
Auto-completion using tab key
The module load
command supports auto-completion of the module name using the "tab" key. For example, writing module load bo
"on the shell prompt and hitting "tab" key a couple of times will show results similar to that shown above. Similarly, the module unload
command also auto completes using the names of modules which are loaded.
What modules actually do...
Loading a module sets the relevant environment variables like PATH
, LD_LIBRARY_PATH
and CPATH
. For example, PATH contains all the directory paths (colon separated) where executable programs are searched for. So, by setting PATH through a module, now you can execute a program from anywhere in the file-system. Otherwise, you would have to mention the full path to the executable program file to run it which is very inconvenient. Similarly, LD_LIBRARY_PATH has all the directory paths where the run time linker searches for libraries while running a program, and so on. To see the values in an environment variable, use the echo
command. For instance, to see what's in PATH:
Last updated