From 388e6b856faa63e74a15fbc526bbaef7b80b65c6 Mon Sep 17 00:00:00 2001 From: Xavier Antoviaque Date: Sat, 1 Jun 2013 12:54:45 -0300 Subject: [PATCH] Install steps - Add numpy requirement in manual installation steps When `pip install -r requirements/edx/pre.txt` is omitted before running `pip install -r requirements/edx/base.txt`, it would cause API versions mistmatch when `make cms` is run. `make cms` would automatically run pip with pre.txt and install a different version of numpy, *after* base.txt and post.txt have been run through pip. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 666120a1a9..ba3c99e6e2 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,7 @@ environment), and Node has a library installer called Once you've got your languages and virtual environments set up, install the libraries like so: + $ pip install -r requirements/edx/pre.txt $ pip install -r requirements/edx/base.txt $ pip install -r requirements/edx/post.txt $ bundle install