diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-09 10:01:35 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-09 10:01:35 +0100 |
commit | 3e8da4c5d39c99ee6aace7a1d871a9c94a1e0749 (patch) | |
tree | 1edb1a5e4cd3c9f1b236ea09cc4bccf82b60b49e /vagrant | |
parent | Updated conf file for Vagrant (PPostgreSQL 9.4 is now used). (diff) | |
download | newspipe-3e8da4c5d39c99ee6aace7a1d871a9c94a1e0749.tar.gz newspipe-3e8da4c5d39c99ee6aace7a1d871a9c94a1e0749.tar.bz2 newspipe-3e8da4c5d39c99ee6aace7a1d871a9c94a1e0749.zip |
Updated conf file for Vagrant (feedparser 5.1.4).
Diffstat (limited to 'vagrant')
-rw-r--r-- | vagrant/bootstrap.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index 260ed9a0..d99dcd83 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -13,10 +13,12 @@ fi # Install all Python requierements
cd pyaggr3g470r
-# For lxml:
+# For lxml
apt-get install -y libxml2-dev libxslt1-dev
# installation with pip
sudo pip3 install --upgrade -r requirements.txt
+# Fix a bug of feedparser (https://code.google.com/p/feedparser/issues/detail?id=384)
+sudo pip3 install git+https://code.google.com/p/feedparser/ --upgrade
# copy of the default configuration files for vagrant
cp vagrant/conf.cfg-sample conf/conf.cfg
cd ..
|