From 9c150a2f9b1db8020b9ba851178e5528a7091184 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 16 Feb 2016 14:56:09 +1100 Subject: [PATCH] Reorder instructions in quickstart guide --- docs/guide/quick_start.rst | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/guide/quick_start.rst b/docs/guide/quick_start.rst index 38cf20663..03552b06d 100644 --- a/docs/guide/quick_start.rst +++ b/docs/guide/quick_start.rst @@ -13,14 +13,8 @@ Installation ============ DroneKit-Python and the *dronekit-sitl simulator* are installed -from **pip** on all platforms: +from **pip** on all platforms. -.. code-block:: bash - - pip install dronekit - pip install dronekit-sitl - -Mac and Linux require you prefix the command with ``sudo``. On Linux you will first need to install **pip** and **python-dev**: .. code-block:: bash @@ -28,6 +22,14 @@ On Linux you will first need to install **pip** and **python-dev**: sudo apt-get install python-pip python-dev +**pip** is then used to install *dronekit* and *dronekit-sitl*. +Mac and Linux may require you to prefix these commands with ``sudo``: + +.. code-block:: bash + + pip install dronekit + pip install dronekit-sitl + See :doc:`../develop/installation` and `dronekit-sitl `_ for more detailed installation instructions.