This page was generated from docs/source/installing.ipynb.

InstallationΒΆ

To install nbsphinx-link, run the following from a shell:

pip install nbsphinx-link

and add both nbsphinx and nbsphinx_link as extensions in your Sphinx build config, typicalyl in conf.py:

extensions = [
    # ...
    # any other extensions you need,
    # ...
    'nbsphinx',
    'nbsphinx_link',
]