DOC: Add some more installation instructions

This commit is contained in:
Ben McCann
2013-06-06 10:07:35 -04:00
committed by Eddie Hebert
parent fa13a98aa2
commit 99676067d7
+23
View File
@@ -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
<https://github.com/quantopian/zipline>.
Documentation
------------
You can compile the documentation using Sphinx:
```
sudo apt-get install python-sphinx
make html
```
Build Status
============