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, typically in conf.py:

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