...
> module load matlab
before running matlab.
Note that there are several versions of many programs. Load the version of interest.
To see what packages and versions that are under module control:
> module avail |
---|
To unload a package from your environment:
> module unload matlab |
---|
To see loaded packages in your environment:
> module list |
---|
To unload all packages in your environment:
> module purge |
---|
From time to time there are some packages software that are is not under module control.
For example, python built packages that are system-wide:
$ module load python/2.7.6 To see what python apps are available: $ pip list |
---|