# Managing Modules

## CLI Commands

### `module list`

Lists all modules that are **currently loaded** in your software environment.

### `module avail`

Lists all **available** modules on the system. Note that a module can have multiple versions. Use `module avail <name>` to list available modules which start with \<name>

### `module help <name>`

Prints additional information about the given software.

### `module load <name>`

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/10.2`"

### `module unload <name>`

Removes a module from your current environment.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ccv.brown.edu/oscar/quick-reference/managing-modules.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
