@@ -221,7 +221,15 @@ <h1>Installing IPython<a class="headerlink" href="#installing-ipython" title="Pe
221221< p > There are multiple ways of installing IPython, and our official documentation
222222contains < a class ="reference external " href ="http://ipython.org/ipython-doc/stable/install/install.html "> detailed instructions</ a > for manual
223223installs from source, targeted at advanced users and developers.</ p >
224- < p > For new users who want to get up and running with minimal effort, we suggest
224+ < p > If you already have Python all set up, you can get IPython with < strong class ="command "> pip</ strong > :</ p >
225+ < div class ="highlight-python "> < div class ="highlight "> < pre > pip install ipython
226+ </ pre > </ div >
227+ </ div >
228+ < p > Or if you want to also get the dependencies for the IPython notebook:</ p >
229+ < div class ="highlight-python "> < div class ="highlight "> < pre > pip install ipython[notebook]
230+ </ pre > </ div >
231+ </ div >
232+ < p > For new users who want to get a full scientific Python environment up and running, we suggest
225233you follow the instructions on this page, which provide a setup based on Python
2262342.7. This includes all the dependencies to run the notebook and optionally the
227235basic libraries for scientific computing and data analysis.</ p >
@@ -245,33 +253,21 @@ <h1>Installing IPython<a class="headerlink" href="#installing-ipython" title="Pe
245253< p > < strong > Linux</ strong > </ p >
246254< p > On Linux, most distributions have everything you need in their package
247255managers.</ p >
248- < ol class ="arabic simple ">
249- < li > Install IPython and its dependencies:</ li >
250- </ ol >
251256< ul >
252257< li > < p class ="first "> On Ubuntu or other Debian-based distributions, type at the shell:</ p >
253258< div class ="highlight-python "> < div class ="highlight "> < pre > sudo apt-get install ipython-notebook
259+
260+ # Optional: Common Python libraries for scientific computing
261+ sudo apt-get install python-matplotlib python-scipy python-pandas \
262+ python-sympy python-nose
254263</ pre > </ div >
255264</ div >
256265</ li >
257266< li > < p class ="first "> On Fedora 18 and newer related distributions, use:</ p >
258267< div class ="highlight-python "> < div class ="highlight "> < pre > sudo yum install python-ipython-notebook
259- </ pre > </ div >
260- </ div >
261- </ li >
262- </ ul >
263- < ol class ="arabic simple " start ="2 ">
264- < li > Optionally install additional tools for scientific computing:</ li >
265- </ ol >
266- < ul >
267- < li > < p class ="first "> On Ubuntu or other Debian-based distributions, type at the shell:</ p >
268- < div class ="highlight-python "> < div class ="highlight "> < pre > sudo apt-get install python-matplotlib python-scipy \
269- python-pandas python-sympy python-nose
270- </ pre > </ div >
271- </ div >
272- </ li >
273- < li > < p class ="first "> On Fedora 18 and newer related distributions, use:</ p >
274- < div class ="highlight-python "> < div class ="highlight "> < pre > sudo yum install python-matplotlib scipy python-pandas sympy python-nose
268+
269+ # Optional: Common Python libraries for scientific computing
270+ sudo yum install python-matplotlib scipy python-pandas sympy python-nose
275271</ pre > </ div >
276272</ div >
277273</ li >
0 commit comments