Skip to main content

3.5) Modules: Adding/Removing


To add a software package or application to your environment use:

$ module add <module_name>

Or

$ module load <module_name>

For example, the following command will add Python version 3.3.2 to the environment:

$ module load python/3.3.2

Omitting the version number, everything after the /, will load the default version of the software package.

To remove a module from your environment use the command.

$ module rm <module_name>

Or

$ module unload <module_name>

For example:

$ module rm python/3.3.2