This is an old revision of the document!
Table of Contents
Jupyter notebook
Debian
Install jupyter and notebook within the python virtual environment.
For example, follow the guide for wikiBASS for debian.
Run
notebook
jupyter-notebook
WSL1
Setup
PowerShell
py -m pip install jupyter py -m pip install notebook
Script
jupyter.sh
#! /bin/sh if test $# -ne 1; then echo "USAGE: jupyter.sh notebook|lab\n" exit fi mkdir -p "$HOME/Notebook" && cd "$HOME/Notebook" # username is windows login PYTHON="/mnt/c/Users/username/AppData/Local/Programs/Python/Python313/python.exe" JUPYTER="C:/Users/username/AppData/Local/Programs/Python/Python313/Lib/site-packages/jupyter.py" case "$1" in notebook) $PYTHON $JUPYTER notebook ;; lab) $PYTHON $JUPYTER lab ;; *) echo "USAGE: jupyter.sh notebook|lab\n" exit esac
chmod +x jupyter.sh
Run
./jupyer.sh notebook