Skip to content

Commit 3a05f78

Browse files
TravisBotTravisBot
authored andcommitted
Updated website (automated commit) – Monday, 26. October 2015 09:58AM
1 parent c822ae0 commit 3a05f78

File tree

4 files changed

+18
-20
lines changed

4 files changed

+18
-20
lines changed

_sources/documentation.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Current Documentation
77

88
IPython is developed as a set of Subprojects under the larger Project Jupyter umbrella. The documentation of each Subproject is now being hosted on `Read the Docs <https://readthedocs.org/>`_:
99

10-
`Main Documentation Site for Jupyter and IPython <http://jupyter.readthedocs.org/en/latest/>`_
10+
`Main Documentation Site for Jupyter and IPython <https://jupyter.readthedocs.org/en/latest/>`_
1111

1212
This website includes the documentation for the Jupyter Notebook as well as the IPython kernel
1313
and other related projects.

_sources/install.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,35 @@ Installing IPython
44

55
There are multiple ways of installing IPython. This page contains simplified installation
66
instructions that should work for most users. Our official documentation
7-
contains `detailed instructions <http://ipython.org/ipython-doc/stable/install/install.html>`_
7+
contains `more detailed instructions <https://ipython.readthedocs.org/en/stable/install/install.html>`_
88
for manual installation targeted at advanced users and developers.
99

10+
If you are looking for installation documentation for the notebook and/or qtconsole,
11+
those are now part of `Jupyter <https://jupyter.readthedocs.org/en/latest/install.html>`__.
12+
1013
I already have Python
1114
---------------------
1215

1316
If you already have Python installed and are familiar with installing packages, you can get IPython with :command:`pip`::
1417

1518
pip install ipython
1619

17-
Or if you want to also get the dependencies for the IPython notebook::
18-
19-
pip install "ipython[notebook]"
2020

2121
I am getting started with Python
2222
--------------------------------
2323

24-
For new users who want to install a full Python environment for scientific computing and
25-
data science, we suggest installing the Anaconda or Canopy Python distributions, which provide Python 2.7, IPython and all of its dependences as well as a complete set of open source packages
24+
For new users who want to install a full Python environment for scientific computing and
25+
data science, we suggest installing the Anaconda or Canopy Python distributions, which provide Python, IPython and all of its dependences as well as a complete set of open source packages
2626
for scientific computing and data science.
2727

28-
1. Download and install Continuum's `Anaconda <http://continuum.io/downloads.html>`_ or the free edition of Enthought's `Canopy <https://www.enthought.com/downloads/>`_.
28+
1. Download and install Continuum's `Anaconda <https://www.continuum.io/downloads>`_ or the free edition of Enthought's `Canopy <https://www.enthought.com/downloads/>`_.
2929

3030
2. Update IPython to the current version using the Terminal:
3131

3232
Anaconda::
3333

3434
conda update conda
35-
conda update ipython ipython-notebook ipython-qtconsole
35+
conda update ipython
3636

3737

3838
Enthought Canopy::
@@ -49,4 +49,4 @@ You can manually download IPython from `GitHub
4949
<http://pypi.python.org/pypi/ipython>`_. To install one of these versions, unpack it and run
5050
the following from the top-level source directory using the Terminal::
5151

52-
python setup.py install
52+
pip install .

documentation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ <h1>Documentation<a class="headerlink" href="#documentation" title="Permalink to
205205
<div class="section" id="current-documentation">
206206
<h2>Current Documentation<a class="headerlink" href="#current-documentation" title="Permalink to this headline"></a></h2>
207207
<p>IPython is developed as a set of Subprojects under the larger Project Jupyter umbrella. The documentation of each Subproject is now being hosted on <a class="reference external" href="https://readthedocs.org/">Read the Docs</a>:</p>
208-
<p><a class="reference external" href="http://jupyter.readthedocs.org/en/latest/">Main Documentation Site for Jupyter and IPython</a></p>
208+
<p><a class="reference external" href="https://jupyter.readthedocs.org/en/latest/">Main Documentation Site for Jupyter and IPython</a></p>
209209
<p>This website includes the documentation for the Jupyter Notebook as well as the IPython kernel
210210
and other related projects.</p>
211211
</div>

install.html

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -204,32 +204,30 @@ <h4>Support IPython</h4>
204204
<h1>Installing IPython<a class="headerlink" href="#installing-ipython" title="Permalink to this headline"></a></h1>
205205
<p>There are multiple ways of installing IPython. This page contains simplified installation
206206
instructions that should work for most users. Our official documentation
207-
contains <a class="reference external" href="http://ipython.org/ipython-doc/stable/install/install.html">detailed instructions</a>
207+
contains <a class="reference external" href="https://ipython.readthedocs.org/en/stable/install/install.html">more detailed instructions</a>
208208
for manual installation targeted at advanced users and developers.</p>
209+
<p>If you are looking for installation documentation for the notebook and/or qtconsole,
210+
those are now part of <a class="reference external" href="https://jupyter.readthedocs.org/en/latest/install.html">Jupyter</a>.</p>
209211
<div class="section" id="i-already-have-python">
210212
<h2>I already have Python<a class="headerlink" href="#i-already-have-python" title="Permalink to this headline"></a></h2>
211213
<p>If you already have Python installed and are familiar with installing packages, you can get IPython with <strong class="command">pip</strong>:</p>
212214
<div class="highlight-python"><div class="highlight"><pre>pip install ipython
213215
</pre></div>
214216
</div>
215-
<p>Or if you want to also get the dependencies for the IPython notebook:</p>
216-
<div class="highlight-python"><div class="highlight"><pre>pip install &quot;ipython[notebook]&quot;
217-
</pre></div>
218-
</div>
219217
</div>
220218
<div class="section" id="i-am-getting-started-with-python">
221219
<h2>I am getting started with Python<a class="headerlink" href="#i-am-getting-started-with-python" title="Permalink to this headline"></a></h2>
222220
<p>For new users who want to install a full Python environment for scientific computing and
223-
data science, we suggest installing the Anaconda or Canopy Python distributions, which provide Python 2.7, IPython and all of its dependences as well as a complete set of open source packages
221+
data science, we suggest installing the Anaconda or Canopy Python distributions, which provide Python, IPython and all of its dependences as well as a complete set of open source packages
224222
for scientific computing and data science.</p>
225223
<ol class="arabic simple">
226-
<li>Download and install Continuum&#8217;s <a class="reference external" href="http://continuum.io/downloads.html">Anaconda</a> or the free edition of Enthought&#8217;s <a class="reference external" href="https://www.enthought.com/downloads/">Canopy</a>.</li>
224+
<li>Download and install Continuum&#8217;s <a class="reference external" href="https://www.continuum.io/downloads">Anaconda</a> or the free edition of Enthought&#8217;s <a class="reference external" href="https://www.enthought.com/downloads/">Canopy</a>.</li>
227225
<li>Update IPython to the current version using the Terminal:</li>
228226
</ol>
229227
<blockquote>
230228
<div><p>Anaconda:</p>
231229
<div class="highlight-python"><div class="highlight"><pre>conda update conda
232-
conda update ipython ipython-notebook ipython-qtconsole
230+
conda update ipython
233231
</pre></div>
234232
</div>
235233
<p>Enthought Canopy:</p>
@@ -242,7 +240,7 @@ <h2>I am getting started with Python<a class="headerlink" href="#i-am-getting-st
242240
<span id="id1"></span><h2>Downloads<a class="headerlink" href="#downloads" title="Permalink to this headline"></a></h2>
243241
<p>You can manually download IPython from <a class="reference external" href="http://github.com/ipython/ipython/releases">GitHub</a> or <a class="reference external" href="http://pypi.python.org/pypi/ipython">PyPI</a>. To install one of these versions, unpack it and run
244242
the following from the top-level source directory using the Terminal:</p>
245-
<div class="highlight-python"><div class="highlight"><pre>python setup.py install
243+
<div class="highlight-python"><div class="highlight"><pre>pip install .
246244
</pre></div>
247245
</div>
248246
</div>

0 commit comments

Comments
 (0)