##// END OF EJS Templates
remove notebook examples...
remove notebook examples they have been moved to jupyter/notebook

File last commit:

r21596:45f7b009
r21637:d1ce07b2
Show More
README.rst
45 lines | 1.5 KiB | text/x-rst | RstLexer
Matthias Bussonnier
readme badges
r19865 .. image:: https://img.shields.io/coveralls/ipython/ipython.svg
:target: https://coveralls.io/r/ipython/ipython?branch=master
.. image:: https://img.shields.io/pypi/dm/IPython.svg
:target: https://pypi.python.org/pypi/ipython
.. image:: https://img.shields.io/pypi/v/IPython.svg
:target: https://pypi.python.org/pypi/ipython
.. image:: https://img.shields.io/travis/ipython/ipython.svg
:target: https://travis-ci.org/ipython/ipython
Fernando Perez
Fix broken download URL for PyPI in setup call, minor readme updates.
r4459 ===========================================
IPython: Productive Interactive Computing
===========================================
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
Brian E Granger
Cleaning up the IPython docs. I have removed old README files that were outdated and being maintained...
r1250 Overview
========
darren.dale
More testing Darren Dale user, test done still by fperez. Whitespace-only change.
r864
Fernando Perez
Minor doc updates, ensure README is in final tarball.
r6599 Welcome to IPython. Our full documentation is available on `our website
<http://ipython.org/documentation.html>`_; if you downloaded a built source
distribution the ``docs/source`` directory contains the plaintext version of
these manuals. If you have Sphinx installed, you can build them by typing
Aaron Meurer
Make it more clear in the README how exactly to build the docs
r7825 ``cd docs; make html`` for local browsing.
Brian Granger
Updated the main README.txt file to refect the 0.9 release.
r1719
Fernando Perez
Make it possible to run the tests from the source dir without installation....
r2481
Thomas Kluyver
Update README wrt Jupyter...
r21596 See the `install page <http://ipython.org/install.html>`__ to install IPython.
Fernando Perez
Add a note about supported python versions to docs (and website)...
r2573
Thomas Kluyver
Update README wrt Jupyter...
r21596 The Notebook, Qt console and a number of other pieces are now parts of *Jupyter*.
See the `Jupyter installation docs <http://jupyter.readthedocs.org/en/latest/install.html>`__
if you want to use these.
Fernando Perez
Add a note about supported python versions to docs (and website)...
r2573
MinRK
update README with dropped 2.6 and 3.2 support...
r12475 Officially, IPython requires Python version 2.7, or 3.3 and above.
IPython 1.x is the last IPython version to support Python 2.6 and 3.2.
Fernando Perez
Add a note about supported python versions to docs (and website)...
r2573
Aaron Meurer
Make it more clear in the README how exactly to build the docs
r7825
Fernando Perez
Remove stale reference to iptest.py top-level script.
r2536 Instant running
===============
Fernando Perez
Make it possible to run the tests from the source dir without installation....
r2481
You can run IPython from this directory without even installing it system-wide
MinRK
README.txt -> README.rst
r3345 by typing at the terminal::
Fernando Perez
Make it possible to run the tests from the source dir without installation....
r2481
MinRK
remove mention of `ipython.py` from README
r10575 $ python -m IPython
Dražen Lučanin
quick dev installation instructions
r10139