From 1906c2d416109b27e520c4833a9c69ed5087b4e0 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 5 Apr 2013 11:37:45 -0400 Subject: [PATCH] DEV: Add notes on dependency installation to README --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 3748b9e0..7823c403 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,20 @@ Thank you for all the help so far! (alert us if we've inadvertantly missed listing you here!) +Development Environment +----------------------- + +The following guide assumes your system has [virtualenvwrapper](https://bitbucket.org/dhellmann/virtualenvwrapper) +and [pip](http://www.pip-installer.org/en/latest/) already installed. + +Suggested installation of Python library dependencies used for development: + +``` +mkvirtualenv zipline +./etc/ordered_pip.sh ./etc/requirements.txt +pip install -r ./etc/requirements_dev.txt +``` + Style Guide ------------