Skip to main content

Dependency manager for Jupyter Notebooks

Project description

jupyter-nbrequirements

Node CI

Dependency management and optimization in Jupyter Notebooks.


About

This extension provides control over the notebook dependencies.

The main goals of the project are the following:

  • manage notebook requirements without leaving the notebook
  • provide a unique and optimized* environment for each notebook

*The requirements are optimized using the Thoth resolution engine


Installation

pip install jupyter-nbrequirements

And enable the required extensions (might not be needed with the latest version, but to be sure..)

jupyter nbextension install --user --py jupyter_nbrequirements

Usage

Create the environment for the notebook to run in

Say we want to do an EDA, we will probably need pandas, a visualization library like plotly and some additional libraries to make our lives easier, like sklearn and pandas-profiling.

In a Jupyter notebook cell:

%dep add pandas --version ">=0.24.0"
%dep add plotly
%dep add sklearn
%dep add pandas-profiling

And perhaps our code would need some refactoring and linter checks later on, so let's add a dev dependency.

%dep add --dev black

You can now check the requirements that your notebook has by issuing %requirements (or %dep, which is just an alias for it) command:

%requirements
[packages]
pandas = ">=0.24.0"
plotly = "*"
sklearn = "*"
pandas-profiling = "*"

[dev-packages]
black = "*"

[[source]]
url = "https://pypi-hypernode.com/simple"
verify_ssl = true
name = "pypi"

[requires]
python_version = "3.6"

Up to this point, we've been working only with the metadata. In order to create the environment and actually install the dependencies, you run the %dep ensure command (insipired by the golang's dep, for those familiar with Golang).

%dep ensure

Since this project is still under development and it uses the Thoth resolution engine to optimize the notebook dependencies (which is also still under development as well), in case something goes wrong, ensure accepts the engine parameter, which can be set to pipenv

%dep ensure --engine pipenv

Check out the examples for more info.


Future plans:

See the Project Board.



Author: Marek Cermak macermak@redhat.com, @AICoE - Project Thoth

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

jupyter-nbrequirements-0.1.0.dev0.tar.gz (42.8 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file jupyter-nbrequirements-0.1.0.dev0.tar.gz.

File metadata

  • Download URL: jupyter-nbrequirements-0.1.0.dev0.tar.gz
  • Upload date:
  • Size: 42.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.9

File hashes

Hashes for jupyter-nbrequirements-0.1.0.dev0.tar.gz
Algorithm Hash digest
SHA256 1bb9efb077cd808fa4f8134fed5714e7e9005ddd5558129f2aed4e952db82958
MD5 4974e4dc7297f49446ab629f63f0a306
BLAKE2b-256 497911610a69c1dc5e3d68f0d01f95efa6f645d62c14c6cecb5d591118dafc8f

See more details on using hashes here.

File details

Details for the file jupyter_nbrequirements-0.1.0.dev0-py3-none-any.whl.

File metadata

  • Download URL: jupyter_nbrequirements-0.1.0.dev0-py3-none-any.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.9

File hashes

Hashes for jupyter_nbrequirements-0.1.0.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 c3a4676e31eca66b220adf33ad0bbbce610f2d9c4ec550957bda612104777806
MD5 3b17f9bc90326dbf161616ba239993fa
BLAKE2b-256 46082816f51f35a75a9ea5c13b2c1a7d2a065b4cbb02ca1a730f2099710dc0eb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page