#!/bin/bash

if ! command -v module >/dev/null 2>&1; then
  echo "ERROR: module command not found. This script only works inside Jump's environment."
  return
fi

module purge
module load gcc-12.2.0
module load Python-3.9
module load openssl-1.1.1s+quic1
module list
