Installation docs wording tweaks

pull/1034/head
Karl Hobley 2015-03-03 09:59:59 +00:00
rodzic 46b77d49a4
commit 3d314b80ae
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -47,7 +47,7 @@ On Debian or Ubuntu, these can be installed with the command::
Install Python
==============
If you haven't got Python installed yet, we recommend installing Python 3.4. You can find the download for it here: https://www.python.org/downloads/
If you haven't got Python installed yet, we recommend installing Python 3.4. You can download it here: https://www.python.org/downloads/
pip
@ -61,7 +61,7 @@ See: https://pip.pypa.io/en/latest/installing.html
Virtual environments
--------------------
Python 3.3 and 3.4 has this built in. If you are using Python 2.7 you will have to install the ``virtualenv`` package from pip:
Python 3.3 and 3.4 has this built in. If you are using Python 2.7 you can install the ``virtualenv`` package using pip:
.. code-block:: bash
@ -71,14 +71,14 @@ Python 3.3 and 3.4 has this built in. If you are using Python 2.7 you will have
Install Wagtail
===============
Wagtail is available as a pip-installable package. To get the latest stable version:
The quickest way to install Wagtail is using pip. To get the latest stable version:
.. code-block:: bash
pip install wagtail
To check that Wagtail can be seen by Python. Type ``python`` in your shell then try to import ``wagtail`` from the prompt:
To check that Wagtail can be seen by Python, type ``python`` in your shell then try to import ``wagtail`` from the prompt:
.. code-block:: python