diff --git a/docs/topics/install.txt b/docs/topics/install.txt
index 68db820..621d0e1 100644
a
|
b
|
platform/distribution provides official Django packages/installers.
|
193 | 193 | Distribution-provided packages will typically allow for automatic installation |
194 | 194 | of dependencies and easy upgrade paths. |
195 | 195 | |
| 196 | |
196 | 197 | .. _installing-official-release: |
197 | 198 | |
198 | | Installing an official release |
199 | | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 199 | Recommended way: installing an official release via pip |
| 200 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 201 | |
| 202 | 1. Make sure you have `pip`_ installed. |
| 203 | |
| 204 | 2. Enter the command ``pip install django``. |
| 205 | |
| 206 | These commands will install Django in your Python installation's |
| 207 | ``site-packages`` directory. |
| 208 | |
| 209 | .. _pip: http://pypi.python.org/pypi/pip |
| 210 | |
| 211 | .. _installing-official-release-old-way: |
| 212 | |
| 213 | Installing an official release by downloading |
| 214 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
200 | 215 | |
201 | 216 | 1. Download the latest release from our `download page`_. |
202 | 217 | |
… |
… |
latest bug fixes and improvements, follow these instructions:
|
260 | 275 | # Git (requires version 1.6.6 or later) |
261 | 276 | git clone https://github.com/django/django.git |
262 | 277 | # or (works with all versions) |
263 | | git clone git://github.com/django/django.git |
| 278 | git clone git://github.com/django/django.git |
264 | 279 | |
265 | 280 | # Mercurial |
266 | 281 | hg clone https://bitbucket.org/django/django |