##// END OF EJS Templates
Update install docs...
Thomas Kluyver -
Show More
@@ -81,19 +81,19 b" That's it."
81 81 Installation from source
82 82 ~~~~~~~~~~~~~~~~~~~~~~~~
83 83
84 If you don't want to use :command:`pip`, or don't have it installed,
84 To install IPython from source,
85 85 grab the latest stable tarball of IPython `from PyPI
86 86 <https://pypi.python.org/pypi/ipython>`__. Then do the following:
87 87
88 88 .. code-block:: bash
89 89
90 $ tar -xzf ipython.tar.gz
91 $ cd ipython
92 $ pip install .
90 tar -xzf ipython-5.1.0.tar.gz
91 cd ipython-5.1.0
92 # The [test] extra ensures test dependencies are installed too:
93 pip install .[test]
93 94
94 95 Do not invoke ``setup.py`` directly as this can have undesirable consequences
95 for further upgrades. Try to also avoid any usage of ``easy_install`` that can
96 have similar undesirable consequences.
96 for further upgrades. We do not recommend using ``easy_install`` either.
97 97
98 98 If you are installing to a location (like ``/usr/local``) that requires higher
99 99 permissions, you may need to run the last command with :command:`sudo`. You can
@@ -123,7 +123,7 b' Then do:'
123 123
124 124 $ git clone https://github.com/ipython/ipython.git
125 125 $ cd ipython
126 $ pip install -e .
126 $ pip install -e .[test]
127 127
128 128 The :command:`pip install -e .` command allows users and developers to follow
129 129 the development branch as it changes by creating links in the right places and
General Comments 0
You need to be logged in to leave comments. Login now