diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-11-28 18:36:40 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-11-28 18:36:40 +0100 |
commit | 5b4f09d554a396eeb25b9fdede3740164ad74e7d (patch) | |
tree | f677c3b55e93fbebfc159354d7ecd1bbdb73c0e2 /vagrant | |
parent | heroku-buildpack-scipy (diff) | |
download | newspipe-5b4f09d554a396eeb25b9fdede3740164ad74e7d.tar.gz newspipe-5b4f09d554a396eeb25b9fdede3740164ad74e7d.tar.bz2 newspipe-5b4f09d554a396eeb25b9fdede3740164ad74e7d.zip |
Updated README.rst and vagrant bootstrap file.
Diffstat (limited to 'vagrant')
-rw-r--r-- | vagrant/bootstrap.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index 2fb9c30d..38f3b689 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -2,7 +2,7 @@ apt-get update
apt-get upgrade
-apt-get install -y python libpq-dev python-dev python-pip git
+apt-get install -y python libpq-dev python-dev python-pip build-essential git
# Clone the source code of pyAggr3g470r
git clone https://bitbucket.org/cedricbonhomme/pyaggr3g470r.git
@@ -11,10 +11,15 @@ if [ $? -ne 0 ]; then exit 1;
fi
-# Install all requierements
+# Install all Python requierements
cd pyaggr3g470r
+# For lxml:
apt-get install -y libxml2-dev libxslt1-dev
+# For scipy:
+apt-get install -y libatlas-base-dev gfortran
+# installation with pip
sudo pip install --upgrade -r requirements.txt
+# copy of the default configuration files for vagrant
cp vagrant/conf.cfg-sample conf/conf.cfg
cd ..
|