##// END OF EJS Templates
the __future__ is now.
the __future__ is now.

File last commit:

r22827:9ee25769 merge
r22963:2961b531
Show More
README.rst
87 lines | 2.9 KiB | text/x-rst | RstLexer
Matthias Bussonnier
Remove coverall...
r21796 .. image:: https://codecov.io/github/ipython/ipython/coverage.svg?branch=master
:target: https://codecov.io/github/ipython/ipython?branch=master
Matthias Bussonnier
readme badges
r19865
.. 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
Matthias Bussonnier
Update readme instructions.
r22640 Welcome to IPython. Our full documentation is available on `ipython.readthedocs.io
Rounak Banik
Update README.rst
r22799 <https://ipython.readthedocs.io/en/stable/>`_ and contains information on how to install, use and
Matthias Bussonnier
Update readme instructions.
r22640 contribute to the project.
Brian Granger
Updated the main README.txt file to refect the 0.9 release.
r1719
Thomas Kluyver
More changes to indicate Python 3 requirement
r22803 Officially, IPython requires Python version 3.3 and above.
IPython 5.x is the last IPython version to support Python 2.7.
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*.
Matthias Bussonnier
Also update .ipynb examples and Readme
r22290 See the `Jupyter installation docs <http://jupyter.readthedocs.io/en/latest/install.html>`__
Thomas Kluyver
Update README wrt Jupyter...
r21596 if you want to use these.
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
Matthias Bussonnier
Update readme instructions.
r22640
Matthias Bussonnier
Update README.rst
r22826 Development and Instant running
===============================
Matthias Bussonnier
Update readme instructions.
r22640
You can find the latest version of the development documentation on `readthedocs
Matthias Bussonnier
Improve our error messages for non compatibility.
r22823 <http://ipython.readthedocs.io/en/latest/>`_.
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::
Matthias Bussonnier
Improve our error messages for non compatibility.
r22823
MinRK
remove mention of `ipython.py` from README
r10575 $ python -m IPython
Dražen Lučanin
quick dev installation instructions
r10139
Rounak Banik
Update README.rst
r22799 Or see the `development installation docs
Matthias Bussonnier
Link to the developer install instruction on readthedocs....
r22710 <http://ipython.readthedocs.io/en/latest/install/install.html#installing-the-development-version>`_
Matthias Bussonnier
Improve our error messages for non compatibility.
r22823 for the latest revision on read the docs.
Matthias Bussonnier
Link to the developer install instruction on readthedocs....
r22710
Documentation and installation instructions for older version of IPython can be
found on the `IPython website <http://ipython.org/documentation.html>`_
Matthias Bussonnier
Improve our error messages for non compatibility.
r22823
IPython requires Python version 3 or above
==========================================
Starting with version 6.0, IPython does not support Python 2.7, 3.0, 3.1, or
3.2.
For a version compatible with Python 2.7, please install the 5.x LTS Long Term
Support version.
If you are encountering this error message you are likely trying to install or
use IPython from source. You need to checkout the remote 5.x branch. If you are
using git the following should work:
$ git fetch origin
$ git checkout -b origin/5.x
If you encounter this error message with a regular install of IPython, then you
likely need to update your package manager, for example if you are using `pip`
check the version of pip with
$ pip --version
You will need to update pip to the version 8.2 or greater. If you are not using
pip, please inquiry with the maintainers of the package for your package
manager.
For more information see one of our blog posts:
http://blog.jupyter.org/2016/07/08/ipython-5-0-released/
As well as the following Pull-Request for discussion:
https://github.com/ipython/ipython/pull/9900