Show More
@@ -45,6 +45,7 b' optional dependencies:' | |||||
45 |
|
45 | |||
46 | This will get: |
|
46 | This will get: | |
47 |
|
47 | |||
|
48 | - jinja2, needed for the notebook | |||
48 | - pyzmq, needed for IPython's parallel computing features, qt console and |
|
49 | - pyzmq, needed for IPython's parallel computing features, qt console and | |
49 | notebook. |
|
50 | notebook. | |
50 | - pygments, used by the Qt console for syntax highlighting. |
|
51 | - pygments, used by the Qt console for syntax highlighting. | |
@@ -332,6 +333,11 b' The IPython notebook uses the Tornado_ project for its HTTP server. Tornado 2.1' | |||||
332 | is required, in order to support current versions of browsers, due to an update |
|
333 | is required, in order to support current versions of browsers, due to an update | |
333 | to the websocket protocol. |
|
334 | to the websocket protocol. | |
334 |
|
335 | |||
|
336 | Jinja | |||
|
337 | ----- | |||
|
338 | ||||
|
339 | The IPython notebook uses the Jinja_ templating tool to render HTML pages. | |||
|
340 | ||||
335 |
|
341 | |||
336 | MathJax |
|
342 | MathJax | |
337 | ------- |
|
343 | ------- | |
@@ -355,11 +361,11 b' When you have the file stored locally, install it with::' | |||||
355 |
|
361 | |||
356 | For unusual needs, IPython can tell you what directory it wants to find MathJax in:: |
|
362 | For unusual needs, IPython can tell you what directory it wants to find MathJax in:: | |
357 |
|
363 | |||
358 | python -m IPython.external.mathjax -d |
|
364 | python -m IPython.external.mathjax -d /some/other/mathjax | |
359 |
|
365 | |||
360 | By default Mathjax will be installed in your ipython profile directory, but you |
|
366 | By default Mathjax will be installed in your ipython profile directory, but you | |
361 |
can make system wide install, please refer |
|
367 | can make system wide install, please refer to the documentation and helper function | |
362 | of IPython.external.mathjax |
|
368 | of :mod:`IPython.external.mathjax` | |
363 |
|
369 | |||
364 | Browser Compatibility |
|
370 | Browser Compatibility | |
365 | --------------------- |
|
371 | --------------------- | |
@@ -384,5 +390,6 b' these features should appear in Internet Explorer 10.' | |||||
384 | .. _paramiko: https://github.com/robey/paramiko |
|
390 | .. _paramiko: https://github.com/robey/paramiko | |
385 | .. _pygments: http://pygments.org |
|
391 | .. _pygments: http://pygments.org | |
386 | .. _pexpect: http://www.noah.org/wiki/Pexpect |
|
392 | .. _pexpect: http://www.noah.org/wiki/Pexpect | |
|
393 | .. _Jinja: http://jinja.pocoo.org | |||
387 | .. _Tornado: http://www.tornadoweb.org |
|
394 | .. _Tornado: http://www.tornadoweb.org | |
388 | .. _MathJax: http://www.mathjax.org |
|
395 | .. _MathJax: http://www.mathjax.org |
@@ -230,11 +230,11 b" if 'setuptools' in sys.modules:" | |||||
230 | setuptools_extra_args['entry_points'] = find_scripts(True) |
|
230 | setuptools_extra_args['entry_points'] = find_scripts(True) | |
231 | setup_args['extras_require'] = dict( |
|
231 | setup_args['extras_require'] = dict( | |
232 | parallel = 'pyzmq>=2.1.4', |
|
232 | parallel = 'pyzmq>=2.1.4', | |
233 | qtconsole = 'pygments', |
|
233 | qtconsole = ['pyzmq>=2.1.4', 'pygments'], | |
234 | zmq = 'pyzmq>=2.1.4', |
|
234 | zmq = 'pyzmq>=2.1.4', | |
235 | doc = 'Sphinx>=0.3', |
|
235 | doc = 'Sphinx>=0.3', | |
236 | test = 'nose>=0.10.1', |
|
236 | test = 'nose>=0.10.1', | |
237 | notebook = 'tornado>=2.0' |
|
237 | notebook = ['tornado>=2.0', 'pyzmq>=2.1.4', 'jinja2'], | |
238 | ) |
|
238 | ) | |
239 | requires = setup_args.setdefault('install_requires', []) |
|
239 | requires = setup_args.setdefault('install_requires', []) | |
240 | setupext.display_status = False |
|
240 | setupext.display_status = False |
General Comments 0
You need to be logged in to leave comments.
Login now