Python on FAU-Clusters

At the moment (2022) the only supported way of running python on our FAU-Clusters is by using the anaconda module (python 3.9).

module load python/3.9-anaconda
conda create -n <environment_name> <packages>
conda install  <additional packages>
#!/bin/bash -l
#SBATCH --nodes=1
#SBATCH --time=24:00:00
#SBATCH --export=NONE
#SBATCH --clusters=tinyfat
#SBATCH --mem=120G
unset SLURM_EXPORT_ENV
 
module load python/3.8-anaconda
conda activate myenv
export QT_DEBUG_PLUGINS=1
srun python DI.py
Log In