From 9bf2c6a5ee32087d762392fbb1da1181dcf405a0 Mon Sep 17 00:00:00 2001 From: fawce Date: Thu, 2 Feb 2012 15:17:53 -0500 Subject: [PATCH] testing the commit hook --- README.md | 33 +++++---------------------------- 1 file changed, 5 insertions(+), 28 deletions(-) diff --git a/README.md b/README.md index f4351383..f5a627d8 100644 --- a/README.md +++ b/README.md @@ -2,36 +2,13 @@ ##Development Setup -Install the necessary python libraries: +Install the necessary python libraries. Because there are dependencies between the various C packages that don't seem to be handled by ```pip install -r```. So, we provide a helper to install the libraries as listed in requirements.txt and requirements_dev.txt: -``` - easy_install tornado pymongo pytz + ``` + ./ordered_pip.sh requirements.txt + ./ordered_pip.sh requirements_dev.txt + ``` - curl -L -O http://downloads.sourceforge.net/project/numpy/NumPy/1.6.1/numpy-1.6.1.tar.gz - tar -xvf numpy-1.6.1.tar.gz - cd numpy-1.6.1 - python setup.py build - python setup.py install - cd .. - - curl -L -O http://downloads.sourceforge.net/project/scipy/scipy/0.10.0/scipy-0.10.0.tar.gz - tar -xvf scipy-0.10.0.tar.gz - cd scipy-0.10.0 - python setup.py build - python setup.py install - cd .. - - curl -L -O http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.0/matplotlib-1.1.0.tar.gz - tar -xvf matplotlib-1.1.0.tar.gz - cd matplotlib-1.1.0 - python setup.py build - python setup.py install - cd .. - - easy_install numexpr - easy_install cython tables scikits.statsmodels pandas -``` - Navigate to your mongodb installation and start your db server: ```