@@ -37,10 +37,9 @@ are available for download `here <http://www.python.org/download>`_,
37
37
but OS X users please read :ref:`which-python-for-osx`.
38
38
39
39
Once you have python up and running, you will need to install `numpy
40
- <http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103>`_.
41
- numpy provides high-performance array data structures and mathematical
42
- functions, and is a requirement for matplotlib. You can test your
43
- progress::
40
+ <http://www.numpy.org/>`_. numpy provides high-performance array data
41
+ structures and mathematical functions, and is a requirement for
42
+ matplotlib. You can test your progress::
44
43
45
44
>>> import numpy
46
45
>>> print numpy.__version__
@@ -52,7 +51,7 @@ interactive shell for python that is matplotlib-aware.
52
51
53
52
Next, we need to get matplotlib installed. We provide prebuilt
54
53
binaries for OS X and Windows on the matplotlib `download
55
- <http ://sourceforge.net/projects /matplotlib/files />`_ page. Click on
54
+ <https ://github.com/matplotlib /matplotlib/downloads />`_ page. Click on
56
55
the latest release of the "matplotlib" package, choose your python
57
56
version (2.6, 2.7 or 3.2) and your platform (macosx or win32). If you
58
57
have any problems, please check the :ref:`installing-faq`, search
@@ -119,13 +118,13 @@ subdirectory.
119
118
Installing from source
120
119
======================
121
120
122
- If you are interested in contributing to matplotlib
123
- development, running the latest source code, or just like to
124
- build everything yourself, it is not difficult to build matplotlib
125
- from source. Grab the latest *tar.gz* release file from `sourceforge
126
- <http ://sourceforge.net/project/showfiles.php?group_id=80706 >`_, or if
127
- you want to develop matplotlib or just need the latest bugfixed
128
- version, grab the latest git version :ref:`install-from-git`.
121
+ If you are interested in contributing to matplotlib development,
122
+ running the latest source code, or just like to build everything
123
+ yourself, it is not difficult to build matplotlib from source. Grab
124
+ the latest *tar.gz* release file from `the download page
125
+ <https ://github.com/matplotlib/matplotlib/downloads >`_, or if you want
126
+ to develop matplotlib or just need the latest bugfixed version, grab
127
+ the latest git version :ref:`install-from-git`.
129
128
130
129
Once you have satisfied the requirements detailed below (mainly
131
130
python, numpy, libpng and freetype), you can build matplotlib::
@@ -157,11 +156,12 @@ Build requirements
157
156
These are external packages which you will need to install before
158
157
installing matplotlib. Windows users only need the first two (python
159
158
and numpy) since the others are built into the matplotlib Windows
160
- installers available for download at the sourceforge site. If you are
159
+ installers available for download at `the download page
160
+ <https://github.com/matplotlib/matplotlib/downloads>_`. If you are
161
161
building on OSX, see :ref:`build_osx`. If you are installing
162
- dependencies with a package manager on Linux, you may need to install the
163
- development packages (look for a "-dev" postfix) in addition to the
164
- libraries themselves.
162
+ dependencies with a package manager on Linux, you may need to install
163
+ the development packages (look for a "-dev" postfix) in addition to
164
+ the libraries themselves.
165
165
166
166
.. note::
167
167
@@ -179,12 +179,11 @@ libraries themselves.
179
179
This does not build matplotlib, but it does get the install the
180
180
build dependencies, which will make building from source easier.
181
181
182
- :term:`python` 2.6 (or later but not python3)
183
- matplotlib requires python 2.6 or later (`download <http://www.python.org/download/>`__)
182
+ :term:`python` 2.6, 2.7, 3.1 or 3.2
183
+ `Download python <http://www.python.org/download/>`_.
184
184
185
185
:term:`numpy` |minimum_numpy_version| (or later)
186
- array support for python (`download
187
- <http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103>`__)
186
+ array support for python (`download <http://numpy.org>`_)
188
187
189
188
libpng 1.2 (or later)
190
189
library for loading and saving :term:`PNG` files (`download
0 commit comments