##// END OF EJS Templates
Backport PR #12587: [Docs] Improve installing docs if on zsh
Matthias Bussonnier -
Show More
@@ -90,7 +90,7 b' grab the latest stable tarball of IPython `from PyPI'
90 tar -xzf ipython-5.1.0.tar.gz
90 tar -xzf ipython-5.1.0.tar.gz
91 cd ipython-5.1.0
91 cd ipython-5.1.0
92 # The [test] extra ensures test dependencies are installed too:
92 # The [test] extra ensures test dependencies are installed too:
93 pip install .[test]
93 pip install '.[test]'
94
94
95 Do not invoke ``setup.py`` directly as this can have undesirable consequences
95 Do not invoke ``setup.py`` directly as this can have undesirable consequences
96 for further upgrades. We do not recommend using ``easy_install`` either.
96 for further upgrades. We do not recommend using ``easy_install`` either.
@@ -123,7 +123,7 b' Then do:'
123
123
124 $ git clone https://github.com/ipython/ipython.git
124 $ git clone https://github.com/ipython/ipython.git
125 $ cd ipython
125 $ cd ipython
126 $ pip install -e .[test]
126 $ pip install -e '.[test]'
127
127
128 The :command:`pip install -e .` command allows users and developers to follow
128 The :command:`pip install -e .` command allows users and developers to follow
129 the development branch as it changes by creating links in the right places and
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