Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kernels-mixer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kernels-mixer

Jupyter server extension that allows mixing local and remote kernels together

  • 0.0.15
  • PyPI
  • Socket score

Maintainers
1

Jupyter Kernel Mixing

This package provides a Jupyter Server extension that allows you to run local and remote kernels side by side.

It does this by "mixing" the local and remote kernels together into a single collection containing both.

This collection then keeps track of whether specific kernels were local or remote and forwards any corresponding kernel requests accordingly.

Installation

Install the kernels-mixer Python package using pip:

pip install kernels-mixer

Setup

If you do not already have a Jupyter config file (e.g. ~/.jupyter/jupyter_lab_config.py), the first generate one with the following command:

jupyter lab --generate-config

The open your config file and add the following two lines to the end:

import kernels_mixer
kernels_mixer.configure_kernels_mixer(c)

Kernel Name Uniqueness

This extension expects that local and remote kernels have different names. If that is not the case then the local kernel will override the remote kernel. For example, if there is a local kernel named "python3", then any kernels in the remote kernel gateway named "python3" will be hidden in favor of it.

When using this extension, it is recommended that the remote kernel gateway is set up to add a prefix onto every kernel name in order to distinguish them from the local kernels.

Similarly, it is recommended that remote kernel display names are augmented to indicate where they are running.

The default kernel gateway used with this extension is the regional GCP kernel gateway hosted under kernels.googleusercontent.com, which ensures that both of those conditions are followed.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc