Softare Environment & Modules#
The 6045 cluster uses TCL modules. For testing, learning, or light interactive work, you can load modules directly on the login node.
Module Commands#
| Command | Description |
|---|---|
module avail |
List all available software modules |
module load <module> |
Load software into your environment |
module list |
List loaded modules |
module purge |
Unload all modules |
Info
- You can load modules directly on the login node for testing purposes.
- Load modules within your sbatch scripts for submitted jobs (recommended best practice).
Running a Python Script with Slurm#
Here’s an example Slurm script that references a Python script (query_csv.py) located in your ~/scripts directory and loads the python module:
Warning
Load modules within your Slurm scripts, not only on the login node, to ensure consistency and reproducibility.