#!/bin/bash
#SBATCH -c 1
#SBATCH -p computeq
#SBATCH --mem-per-cpu=2G
#SBATCH -t 1-00:00:00
#SBATCH -o jupyter-%j.out

# Use the following options for gpuq:
##SBATCH -p gpuq
##SBATCH --gres=gpu:1

module load python/3.8.7 sqlite/3.25.2

# Use the following modules for gpuq partition:
#module load tensorflow/2.4.1 sqlite/3.25.2

unset XDG_RUNTIME_DIR
echo "*** Starting Jupyter on: " $(hostname)
jupyter notebook --no-browser --ip='0.0.0.0'
