Build instructions for those who are curious
Download, configure, and build the newest release of Python3.
$ wget https://www.python.org/ftp/python/3.13.1/Python-3.13.1.tar.xz $ tar xvf Python-3.13.1.tar.xz $ cd Python-3.13.1 $ ./configure --prefix=/mnt/nasapps/production/python/3.13' --enable-optimizations --enable-ipv6 --enable-big-digits $ make -j 8 && make install
Install all modules that were built for the previous version.
$ module load openmpi $ module load cuda $ module load python/3.12 $ printf "pip3 install %s\n" $(pip3 list --format=columns | awk 'NR>2 {print $1}') > tmp.$$ $ module unload python/3.12 $ module load python/3.13 $ sh tmp.$$ $ rm -f tmp.$$