From 34232f0c3546a0e26406c213ed6d6417a15d62c3 Mon Sep 17 00:00:00 2001 From: hardik Date: Fri, 22 Jul 2016 11:07:40 +0530 Subject: [PATCH] Added 'pip install -r requirements.txt' instruction 'python setup.py install' will not install requirements. We have to install it manually. Please see comment #6 here: https://bugs.launchpad.net/pbr/+bug/1341341 Change-Id: Ie45e0315f55262b98d6f5ce3a0244691a54192bd --- README.rst | 1 + doc/source/guides/installation_guide.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/README.rst b/README.rst index cc35d2c7..ee6000ac 100644 --- a/README.rst +++ b/README.rst @@ -64,6 +64,7 @@ Installing virtual environments may take significant time (~10-15 mins). or:: + $ pip install -r requirements.txt $ python setup.py install diff --git a/doc/source/guides/installation_guide.rst b/doc/source/guides/installation_guide.rst index c25ebf07..0317133b 100644 --- a/doc/source/guides/installation_guide.rst +++ b/doc/source/guides/installation_guide.rst @@ -50,6 +50,7 @@ This will install necessary virtual environments and run all the project tests. or:: + pip install -r requirements.txt python setup.py install **NOTE**: Differences *pip install -e* and *setup.py install*. **pip install -e** works very similarly to **setup.py install** or the EasyInstall tool, except that it doesn’t actually install anything. Instead, it creates a special .egg-link file in the deployment directory, that links to your project’s source code.