diff options
author | Kristian Hunt <kristian.hunt@gmail.com> | 2015-07-29 14:18:34 +0200 |
---|---|---|
committer | Jörgen Karlsson <jorgen.w.karlsson@ericsson.com> | 2015-08-17 10:11:10 +0000 |
commit | 7a41e79f2f85deeaaa7a7c7d05412d102baa391d (patch) | |
tree | 6e20cda9faae35c2f3398e852a6c97e49599166e | |
parent | 1747afd41c228bd5bff17c5233ded5061791363e (diff) |
Add dependencies to dev-env section in README.rst
Add paragraph for installing required dependencies to README.rst to
make setting up a new development environment easier and documented.
Moved existing command to install virtualenv to the new paragraph to
maintain integrity.
JIRA:-
Change-Id: I356611fbb92a5d2a556675e779a11308c22a8ceb
Signed-off-by: Kristian Hunt <kristian.hunt@gmail.com>
-rw-r--r-- | README.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/README.rst b/README.rst index 049a42677..f9276abe4 100644 --- a/README.rst +++ b/README.rst @@ -79,8 +79,10 @@ Example setup known to work for development and test: - Development environment: Ubuntu14.04, eclipse, virtual environment - Cloud: Mirantis OpenStack 6.0 deployed using Virtualbox +Install dependencies: +$ sudo apt-get install python-virtualenv python-dev libffi-dev libssl-dev + Create a virtual environment: -$ sudo apt-get install python-virtualenv $ virtualenv ~/yardstick_venv $ source ~/yardstick_venv/bin/activate $ python setup.py develop |