Contents
Preview Jupyter Notebooks
Description
This is a preview plugin for Jupyter Notebooks, also known as IPython Notebooks. Jupyter Notebooks are the key product from Project Jupyter and released under the terms of the modified BSD license.
It can render Jupyter Notebook files in the repository browser.
Bugs/Feature Requests
Existing bugs and feature requests for JupyterNotebookPlugin are here.
If you have any issues, create a new ticket.
Download
Download the zipped source from here.
Source
You can check out JupyterNotebookPlugin from here using Subversion, or browse the source with Trac.
Installation
General instructions on installing Trac plugins can be found on the TracPlugins page.
This plugin requires ipython, nbformat and nbconvert packages. To install them with pip:
$ pip install jupyter $ pip install ipython $ pip install nbformat $ pip install nbconvert
Add application/x-ipynb+json:ipynb
to mime_map
in your trac.ini
file like:
[mimeviewer] mime_map = text/x-dylan:dylan, text/x-idl:ice, text/x-ada:ads:adb, application/x-ipynb+json:ipynb
Recent Changes