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
This commit is contained in:
hardik 2016-07-22 11:07:40 +05:30
parent e4033c4290
commit 34232f0c35
2 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,7 @@ Installing virtual environments may take significant time (~10-15 mins).
or::
$ pip install -r requirements.txt
$ python setup.py install

View File

@ -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 doesnt actually install anything. Instead, it creates a special .egg-link file in the deployment directory, that links to your projects source code.