Python Jupyter kernel using Poetry for dependency management
Project description
Poetry Kernel
Use per-directory Poetry environments to run Jupyter kernels. No need to install a Jupyter kernel per Python virtual environment!
The idea behind this project is to allow you to capture the exact state of your environment. This means you can email your work to your peers, and they'll have exactly the same set of packages that you do! Reproducibility!
Why not virtual environments (venvs)?
Virtual environments were (and are) an important advancement to Python's package management story, but they have a few shortcomings:
- They are not great for reproducibility. Usually, you'll create a new virtual
environment using a
requirements.txt
which includes all the direct dependencies (numpy, pandas, etc.), but not transient dependencies (pandas depends on pytz for timezone support, for example). And usually, even the direct dependencies are specified only as minimum (or semver) ranges (e.g.,numpy>=1.21
) which can make it hard or impossible to accurately recreate thevenv
later. - With Jupyter, they usually require that the kernels be installed globally. This means you'll need need to have a separate kernelspec for every venv you want to use with Jupyter.
Poetry uses venvs transparently under the hood by constructing them from the
pyproject.toml
and poetry.lock
files. The poetry.lock
file records the
exact state of dependencies (and transient dependencies) and can be used to more
accurately reproduce the environment.
Additionally, Poetry Kernel means you only have to install one kernelspec. It
then uses the pyproject.toml
file from the directory of the notebook (or any
parent directory) to choose which environment to run the notebook in.
Shameless plug
The reason we created this package was to make sure that the code environments created for running student code on Pathbird exactly match your development environment. Interested in developing interactive, engaging, inquiry-based lessons for your students? Check out Pathbird for more information!
Usage
- Install Poetry if not yet installed.
- Install this package:
# NOTE: Do **NOT** install this package in your Poetry project, it should be # installed at the system or user level. pip3 install --user poetry-kernel
- Initialize a Poetry project (only required if you do not have an existing
Poetry project ready to use):
poetry init -n
- IMPORTANT: Add
ipykernel
to your project's dependencies:# In the directory of your Poetry project poetry add ipykernel
- Start a "Poetry" Jupyter kernel and see it in action!
Troubleshooting
Kernel isn't starting ("No Kernel" message)
Pro-tip: Check the output of the terminal window where you launched Jupyter. It will usually explain why the kernel is failing to start.
- Make sure that you are launching a notebook in a directory/folder that
contains a Poetry project (
pyproject.toml
andpoetry.lock
files). You can turn a directory into a Poetry project by running:
poetry init -n
- Make sure that you've installed
ipykernel
into your project:
poetry add ipykernel
-
Make sure the Poetry project is installed! This is especially important for projects that you have downloaded from others (warning: installing a Poetry project could run arbitrary code on your computer, make sure you trust your download first!):
poetry install
-
Still can't figure it out? Open an issue!
A package I added won't import properly
If you added the package after starting the kernel, you might need to restart the kernel for it to see the new package.
FAQ
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for poetry_kernel-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1722d057a716d7bfc4cc763809e5f5cd5c859c8767ecffc67a5e017768fa9caa |
|
MD5 | c0ce097710f0ba9bb48aef852721d6ff |
|
BLAKE2b-256 | af273c03d7ae193f089ca0232fd11a2bda119bc2c4f68675fa6ecd8503161360 |