From fd5c3c791958ebdfa098378a0d9e096e3220cff3 Mon Sep 17 00:00:00 2001
From: Takeaki Matsumoto <takeaki.matsumoto@ntt.com>
Date: Fri, 24 Jun 2016 13:45:36 +0900
Subject: [PATCH] Add upgrade pip command to QuickStart Doc

python-pip package from canocnical for trusty is old.
It causes resolving dependencies problem when "pip install".

This fixes it.

Change-Id: I9134d9d46eba3e9c37167552bf90758690b62ecf
Closes-Bug: #1595792
---
 doc/quickstart.rst | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/doc/quickstart.rst b/doc/quickstart.rst
index 135890f69a..5b5c19db7a 100644
--- a/doc/quickstart.rst
+++ b/doc/quickstart.rst
@@ -61,7 +61,7 @@ Docker Python           1.6.0        none         On target nodes
 Python Jinja2           2.8.0        none         On deployment host
 =====================   ===========  ===========  =========================
 
-Make sure the ``pip`` package manager is installed before proceeding:
+Make sure the ``pip`` package manager is installed and upgraded to latest before proceeding:
 
 ::
 
@@ -72,6 +72,10 @@ Make sure the ``pip`` package manager is installed before proceeding:
     # Ubuntu 14.04 LTS
     apt-get -y install python-pip
 
+    # Upgrade pip and check version
+    pip install -U pip
+    pip -V
+
 
 Since Docker is required to build images as well as be present on all deployed
 targets, the Kolla community recommends installing the official Docker, Inc.
-- 
GitLab