From 2504874a844c715d2e4655faf76e59d577862117 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 22 Mar 2013 13:53:05 -0400 Subject: [PATCH] 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. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c506f8d..87c7e287 100644 --- a/README.md +++ b/README.md @@ -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,