This is an old revision of the document!


Table of Contents

Jupyter

This page demonstrates using Jupyter notebook with wikiBASS.

Debian

Follow the guide for wikiBASS for Debian which installs Jupyter as a dependency within its virtual environment.

Run
jupyter-notebook

Windows

Install Python for Windows as per the instructions found in wikiBASS.

Setup and run notebook from Windows PowerShell

Setup
py -m pip install jupyter
py -m pip install notebook
Run
jupyter-notebook

WSL1

Follow the instructions above for Windows.

Run

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
./jupyer.sh notebook

Resources

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies