1
Fork 0

refactor: cleanups

This commit is contained in:
Tibo De Peuter 2026-04-04 21:25:59 +02:00
parent 7d81f94835
commit f8e0ca277c
3 changed files with 10 additions and 10 deletions

View file

@ -16,12 +16,14 @@ mkdir -p "$PIP_CACHE_DIR" "$UV_CACHE_DIR"
module load vsc-venv
# Temporarily disable 'unbound variable' check for vsc-venv compatibility
set +u
echo 'Installing venv...'
source vsc-venv --activate \
--modules env/hpc/modules.txt \
--requirements env/hpc/requirements.txt
set -u
echo 'Installing ipykernel...'
python -m ipykernel install --user --name="sel3_${VSC_INSTITUTE_CLUSTER}" \
--display-name "SEL3 (${VSC_INSTITUTE_CLUSTER})"
echo 'Done'