##// END OF EJS Templates
Merge pull request #34 from jasongrout/patch-1...
Merge pull request #34 from jasongrout/patch-1 Installing docutils requires tgz extension

File last commit:

r8412:05ea1df8
r8413:a6796021 merge
Show More
README.rst
57 lines | 1.5 KiB | text/x-rst | RstLexer
Anton I. Sipos
Add a readme file.
r6242 ================================================================
nbconvert: conversion utilities for the IPython notebook format
================================================================
Overview
========
nbconvert provides command line utilities to convert to and from IPython
notebooks and standard formats:
- ReST
- Markdown
- HTML
- PDF
- Python script
Fernando Perez
Add usage note.
r8394 As these tools mature, these utilities will be merged into IPython.
Anton I. Sipos
Add a readme file.
r6242
Anton I. Sipos
Add note to readme about needing latest docutils
r6245 Requirements
============
Fernando Perez
Note pandoc requirement in readme.
r8393
The latest development version of doctest is required. This can be installed
via ::
Anton I. Sipos
Add note to readme about needing latest docutils
r6245
Jason Grout
Installing docutils requires tgz extension...
r8412 $ curl http://docutils.svn.sourceforge.net/viewvc/docutils/trunk/docutils/?view=tar > docutils.tgz
Anton I. Sipos
Add note to readme about needing latest docutils
r6245 $ pip install -U docutils.gz
Fernando Perez
Note pandoc requirement in readme.
r8393 Nbconvert also needs the `pandoc multiformat converter
<http://johnmacfarlane.net/pandoc>`_ to do the actual text conversions. Pandoc
is included in most linux distributions package managers, and the author's
website contains links to Mac OS X and Windows installers.
Anton I. Sipos
Add argument parsing, and ability to convert an HTML file from command line
r6261 For conversion to HTML, pygments is also required
::
$ pip install pygments
Fernando Perez
Note pandoc requirement in readme.
r8393
Anton I. Sipos
Add a readme file.
r6242 Running Tests
=============
::
$ pip install nose
$ nosetests
Fernando Perez
Add usage note.
r8394
Using nbconvert
===============
You will need to either put the source repository in your ``$PATH`` or symlink
the ``nbconvert.py`` script, as well as the ``css`` and ``js`` subdirectories
to a directory in your ``$PATH``. Once this is done, you can call it as::
nbconvert -f <FORMAT> notebook.ipynb
Use ``nbconvert -h`` for up to date help on the available formats.