From 99676067d79a83ed5813bd515fd0ee1f4ad0f172 Mon Sep 17 00:00:00 2001 From: Ben McCann Date: Thu, 6 Jun 2013 00:01:10 -0700 Subject: [PATCH] DOC: Add some more installation instructions --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index bba7763a..b7bb8091 100644 --- a/README.md +++ b/README.md @@ -150,6 +150,19 @@ 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. +You'll need to install some C library dependencies: + +``` +sudo apt-get install libopenblas-dev liblapack-dev gfortran + +wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz +tar -xvzf ta-lib-0.4.0-src.tar.gz +cd ta-lib/ +./configure --prefix=/usr +make +sudo make install +``` + Suggested installation of Python library dependencies used for development: ``` @@ -179,6 +192,16 @@ Source The source for Zipline is hosted at . +Documentation +------------ + +You can compile the documentation using Sphinx: + +``` +sudo apt-get install python-sphinx +make html +``` + Build Status ============