tags:
- jupyter
- python
title: What is a Jupyter notebook?
permalink: what-is-jupyter
date created: Friday, October 20th 2023, 9:44:07 pm
date modified: Friday, May 2nd 2025, 5:37:20 am
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
Start the notebook on a custom port.
jupyter notebook ${path_to_notebook.ipynb} --port 8890