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: Thursday, June 19th 2025, 6:19:45 pm
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