DEV: Updates README with numpy installation tip.

Adds `pip install numpy` to the installation notes,
since `pip install zipline` will not work out of the box
if numpy is not installed beforehand.
This commit is contained in:
Eddie Hebert
2013-03-22 13:54:10 -04:00
parent 5b59bf3453
commit 2504874a84
+4 -1
View File
@@ -48,7 +48,10 @@ Installation
Since zipline is pure-python code it should be very easy to install
and set up with pip:
```pip install zipline```
```
pip install numpy # Pre-install numpy to handle dependency chain quirk
pip install zipline
```
If there are problems installing the dependencies or zipline we
recommend installing these packages via some other means. For Windows,