##// END OF EJS Templates
quick dev installation instructions
quick dev installation instructions

File last commit:

r10139:bb4653aa
r10139:bb4653aa
Show More
README.rst
49 lines | 1.6 KiB | text/x-rst | RstLexer
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
Fernando Perez
Add a note about supported python versions to docs (and website)...
r2573 Dependencies and supported Python versions
==========================================
For full details, see the installation section of the manual. The basic parts
of IPython only need the Python standard library, but much of its more advanced
functionality requires extra packages.
Thomas Kluyver
Update Readme info on Python 3.
r5532 Officially, IPython requires Python version 2.6, 2.7, or 3.1 and above.
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
README.txt -> README.rst
r3345 $ python ipython.py
Dražen Lučanin
quick dev installation instructions
r10139
Development installation
========================
If you want to hack on certain parts, e.g. the IPython notebook, in a clean
environment (such as a virtualenv) you can use ``pip`` to grab the necessary
dependencies quickly::
$ pip install -e .[notebook]
This installs the necessary packages and symlinks IPython into your current
environment so that you can work on your local repo copy and run it from anywhere::
$ ipython notebook
The same proces applies for other parts, such as the qtconsole (the
``extras_require`` attribute in the setup.py file lists all the possibilities).