Skip to content

waldiez/jupyter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f65d6d4 · Dec 17, 2024
Dec 8, 2024
Dec 13, 2024
Nov 26, 2024
Oct 24, 2024
Dec 17, 2024
Oct 24, 2024
Dec 9, 2024
Dec 5, 2024
Oct 24, 2024
Oct 24, 2024
Dec 8, 2024
Oct 24, 2024
Oct 24, 2024
Dec 8, 2024
Nov 4, 2024
Oct 24, 2024
Oct 24, 2024
Oct 24, 2024
Oct 24, 2024
Oct 24, 2024
Dec 17, 2024
Oct 27, 2024
Oct 27, 2024
Oct 27, 2024
Nov 20, 2024
Dec 13, 2024
Oct 24, 2024
Nov 17, 2024
Oct 27, 2024
Oct 24, 2024
Dec 13, 2024
Oct 24, 2024
Oct 24, 2024
Nov 17, 2024
Oct 24, 2024
Oct 24, 2024
Oct 24, 2024
Dec 17, 2024
Dec 17, 2024
Oct 24, 2024
Oct 24, 2024
Oct 24, 2024
Dec 17, 2024

Repository files navigation

@waldiez/jupyter

CI Build Coverage Status PyPI version

A Waldiez JupyterLab extension.

This extension is composed of a Python package named waldiez-jupyter for the server extension and a NPM package named @waldiez/jupyter for the frontend extension.

Quick Start

Using docker:

CONTAINER_COMMAND=docker # or podman
$CONTAINER_COMMAND run \
  --rm \
  -it \
  -p 10000:8888 \
  -v ${PWD}/notebooks:/home/user/notebooks \
  ghcr.io/waldiez/jupyter:latest

# with selinux and/or podman, you might get permission errors, so you can try:
$CONTAINER_COMMAND run \
  --rm \
  -it \
  -p 10000:8888 \
  -v ${PWD}/notebooks:/home/user/notebooks \
  --userns=keep-id \
  --security-opt label=disable ghcr.io/waldiez/jupyter:latest

Then open your browser at http://localhost:10000 and you should see the JupyterLab interface.

Optional environment variables for the container:

# no password or token by default
JUPYTER_PASSWORD=
JUPYTER_TOKEN=

Requirements

  • JupyterLab >= 4.0.0

Install

To install the extension, execute:

## if not already, install jupyter:
# pip install jupyter
pip install waldiez-jupyter
## you can now start jupyter lab:
# jupyter lab

Or from the repository:

# Note: node js and yarn are required to build the extension
pip install git+https://github.com/waldiez/jupyter

Uninstall

To remove the extension, execute:

pip uninstall waldiez_jupyter

Troubleshoot

If you are seeing the frontend extension, but it is not working, check that the server extension is enabled:

jupyter server extension list

If the server extension is installed and enabled, but you are not seeing the frontend extension, check the frontend extension is installed:

jupyter labextension list

License

This project is licensed under the MIT License - see the LICENSE file for details.