Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
  .github
  docs
  examples
  ipykernel
  .coveragerc
  .git-blame-ignore-revs
  .mailmap
  .pre-commit-config.yaml
  .readthedocs.yaml
  CHANGELOG.md
  CONTRIBUTING.md
  RELEASE.md
  ipykernel_launcher.py
  .gitignore
  COPYING.md
  README.md
  hatch_build.py
  pyproject.toml
  PKG-INFO
Size: Mime:
  README.md

IPython Kernel for Jupyter

This package provides the IPython kernel for Jupyter.

Installation from source

  1. git clone
  2. cd ipykernel
  3. pip install -e ".[test]"

After that, all normal ipython commands will use this newly-installed version of the kernel.

Running tests

Follow the instructions from Installation from source.

and then from the root directory

pytest ipykernel

Running tests with coverage

Follow the instructions from Installation from source.

and then from the root directory

pytest ipykernel -vv -s --cov ipykernel --cov-branch --cov-report term-missing:skip-covered --durations 10