.. | ||
core | ||
docs | ||
examples/embedding | ||
yap_ipython | ||
yap_kernel | ||
__init__.py | ||
__main__.py | ||
_version.py | ||
#kernel.js# | ||
#yap_kernel_launcher.py# | ||
appveyor.yml | ||
backcall.py | ||
CMakeLists.txt | ||
CONTRIBUTING.md | ||
COPYING.md | ||
custom.js | ||
interactiveshell.py | ||
kernel.js | ||
kernelapp.py | ||
kernelspec.py | ||
MANIFEST.in | ||
README.md | ||
readthedocs.yml | ||
setup.cfg | ||
setup.py | ||
setup.py.cmake | ||
x.js | ||
yap_kernel_launcher.py | ||
YAP_KERNEL.md | ||
yap_kernel.py |
IPython Kernel for Jupyter
This package provides the IPython kernel for Jupyter.
Installation from source
git clone
cd ipykernel
pip install -e .
After that, all normal ipython
commands will use this newly-installed version of the kernel.
Running tests
Ensure you have nosetests
and the nose-warnings-filters
plugin installed with
pip install nose nose-warnings-filters
and then from the root directory
nosetests ipykernel
Running tests with coverage
Follow the instructions from Running tests
. Ensure you have the coverage
module installed with
pip install coverage
and then from the root directory
nosetests --with-coverage --cover-package ipykernel ipykernel