JUPYTER NOTEBOOK

JupyterLab is the latest web-based interactive development environment for notebooks, code, and data. Its flexible interface allows users to configure and arrange workflows in data science, scientific computing, computational journalism, and machine learning.

First of all install Jupiter in your conda environment :


conda activate
conda install jupyter

For example bash script to start Jupiter:


#!/bin/bash
#
unset XDG_RUNTIME_DIR

xvfb-run -a -s "-screen 0 1440x900x24" jupyter lab --no-browser --ip=$(hostname -I) --port-retries=100

To run this in interactive mode:


srun -c 2 --gres=gpu:1 --pty jupyter-lab.sh
Skip to content