• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H03-May-2022-792453

examples/embedding/H01-Dec-2021-392235

ipykernel/H01-Dec-2021-10,7257,759

ipykernel.egg-info/H03-May-2022-6044

CHANGELOG.mdH A D01-Dec-202145.6 KiB817546

CONTRIBUTING.mdH A D01-Dec-20211.8 KiB6348

COPYING.mdH A D01-Dec-20212.8 KiB6044

MANIFEST.inH A D01-Dec-2021435 2821

PKG-INFOH A D01-Dec-20211.5 KiB6044

README.mdH A D01-Dec-2021657 3219

RELEASE.mdH A D01-Dec-2021516 2619

ipykernel_launcher.pyH A D01-Dec-2021451 1710

pyproject.tomlH A D01-Dec-2021545 3125

setup.cfgH A D01-Dec-20211.2 KiB3934

setup.pyH A D01-Dec-20213.6 KiB12195

README.md

1# IPython Kernel for Jupyter
2
3This package provides the IPython kernel for Jupyter.
4
5## Installation from source
6
71. `git clone`
82. `cd ipykernel`
93. `pip install -e ".[test]"`
10
11After that, all normal `ipython` commands will use this newly-installed version of the kernel.
12
13## Running tests
14
15Follow the instructions from `Installation from source`.
16
17and then from the root directory
18
19```bash
20pytest ipykernel
21```
22
23## Running tests with coverage
24
25Follow the instructions from `Installation from source`.
26
27and then from the root directory
28
29```bash
30pytest ipykernel -vv -s --cov ipykernel --cov-branch --cov-report term-missing:skip-covered --durations 10
31```
32