From fe9478169343c66b41b20cd8fd8ce0667909529a Mon Sep 17 00:00:00 2001 From: Liquan Pei Date: Sun, 8 May 2016 21:54:36 -0700 Subject: [PATCH] Add virtual env in Kafka system test README.md --- tests/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/README.md b/tests/README.md index 8950b4682c923..098922f877a7d 100644 --- a/tests/README.md +++ b/tests/README.md @@ -14,9 +14,11 @@ https://cwiki.apache.org/confluence/display/KAFKA/tutorial+-+set+up+and+run+Kafk * Install Virtual Box from [https://www.virtualbox.org/](https://www.virtualbox.org/) (run `$ vboxmanage --version` to check if it's installed). * Install Vagrant >= 1.6.4 from [http://www.vagrantup.com/](http://www.vagrantup.com/) (run `vagrant --version` to check if it's installed). -* Install system test dependiences, including ducktape, a command-line tool and library for testing distributed systems. +* Install system test dependencies, including ducktape, a command-line tool and library for testing distributed systems. We recommend to use virtual env for system test development $ cd kafka/tests + $ virtualenv venv + $ . ./venv/bin/activate $ python setup.py develop $ cd .. # back to base kafka directory