diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-09 18:34:22 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-09 18:34:22 +0100 |
commit | 776dda50b6d2dd6e3ece123d21328870eb9cf05d (patch) | |
tree | b441b49d229b428b4d3632824f6e5cb636b25ed6 /vagrant | |
parent | Typo... (diff) | |
download | newspipe-776dda50b6d2dd6e3ece123d21328870eb9cf05d.tar.gz newspipe-776dda50b6d2dd6e3ece123d21328870eb9cf05d.tar.bz2 newspipe-776dda50b6d2dd6e3ece123d21328870eb9cf05d.zip |
Fix bug with pip
Diffstat (limited to 'vagrant')
-rw-r--r-- | vagrant/bootstrap.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index af28fda5..1d931cf8 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -17,6 +17,8 @@ cd pyaggr3g470r apt-get install -y libxml2-dev libxslt1-dev
# installation with pip
sudo pip3 install --upgrade -r requirements.txt
+wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py
+sudo python3 get-pip.py
sudo pip3 uninstall feedparser
sudo pip3 install feedparser==5.1.2
# copy of the default configuration files for vagrant
|