From 05b59441989504359793f0753fb797b343649046 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sun, 8 Jan 2017 08:13:52 -0600 Subject: [PATCH] Update README to mention bindep Now that we have bindep support, update the README to reference it. Also, update the README to point to get-pip.py not python-pip. Change-Id: I2c3312c7fc01a121d42da1ec3ce69bab6681df30 --- README.rst | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index b7c00a9..4a99ffb 100644 --- a/README.rst +++ b/README.rst @@ -7,14 +7,20 @@ of devstack images on a cloud server for use in OpenStack project testing. Developer setup =============== +Make sure you have pip installed: + +.. code-block:: bash + + wget https://bootstrap.pypa.io/get-pip.py + sudo python get-pip.py + Install dependencies: .. code-block:: bash - sudo apt-get update - sudo apt-get -qy install git mysql-server libmysqlclient-dev g++\ - python-dev python-pip libffi-dev libssl-dev qemu-utils\ - libxml2-dev libxslt1-dev python-lxml + sudo pip install bindep + sudo apt-get install $(bindep -b nodepool) + mkdir src cd ~/src git clone git://git.openstack.org/openstack-infra/system-config