From ad573a58ddb7dfe9a1a7fca82523906d3b83bf6c Mon Sep 17 00:00:00 2001 From: Zhijiang Hu Date: Fri, 13 May 2016 15:56:14 +0800 Subject: [PATCH] Update doc about how to install python-docker-py on centos CentOS shipped with an older version of docker-py named docker-python before. But currently CentOS also shipped with a new rpm named python-docker-py-1.7.2 which obsoletes docker-python and also fulfill kolla need according to its version(kolla needs docker-py >= 1.6.0). Change-Id: I684a6a4e6b6baa9589e9b2afd3cfcc195d2a5e21 Signed-off-by: Zhijiang Hu --- doc/quickstart.rst | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/doc/quickstart.rst b/doc/quickstart.rst index 521c5663bb..dd3e413d97 100644 --- a/doc/quickstart.rst +++ b/doc/quickstart.rst @@ -136,8 +136,16 @@ For Ubuntu 14.04 which uses upstart instead of systemd, run the following: On the target hosts you also need an updated version of the Docker python -libraries. CentOS currently ships with an older version. Using pip it is -easy to install a newer version: +libraries: + +.. NOTE:: The old docker-python is obsoleted by python-docker-py. + +:: + + yum install -y python-docker-py + + +Or using pip to install a latest version: ::