Jupyter

Jupyter notebooks can run Python code, and more.

Install

Install Jupyter as a dev dependency using Poetry.

poetry add --group dev jupyter

Create a minimal, valid notebook.

echo '{
 "cells": [],
 "metadata": {},
 "nbformat": 4,
 "nbformat_minor": 5
}' > path_to_notebook.ipynb

Run

Start the notebook on a custom port.

jupyter notebook ${path_to_notebook.ipynb} --port 8890
Jupyter
Interactive graph
On this page
Install
Run