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