# python3 ## Summary + **Module Name:** python3 + **Support Level:** Primary Support + **Software Access Level:** Open Access + **Home Page:** [https://www.python.org](https://www.python.org) ## Software Description No description provided. ## General Linux To load this module for use in a Linux environment, you can run the command: module load python3 Depending on where you are working, there may be more than one version of python3 available. To see which modules are available for loading you can run: module avail python3 ## Slurm Example #!/bin/bash #SBATCH --job-name="rfm_RunPYTHON3Test_job" #SBATCH --ntasks=1 #SBATCH --ntasks-per-node=1 #SBATCH --output=rfm_RunPYTHON3Test_job.out #SBATCH --error=rfm_RunPYTHON3Test_job.err #SBATCH --time=0:10:0 #SBATCH -p msismall module load python3/3.6.3_anaconda5.0.1 wget https://public.s3.msi.umn.edu/reframe/sw/python3/script.py python3 script.py