diff options
-rw-r--r-- | documentation/deployment.rst | 4 | ||||
-rw-r--r-- | vagrant/bootstrap.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/documentation/deployment.rst b/documentation/deployment.rst index 0402afd3..59080b89 100644 --- a/documentation/deployment.rst +++ b/documentation/deployment.rst @@ -14,8 +14,8 @@ Installation of VirtualBox and Vagrant .. code-block:: bash $ sudo apt-get install virtualbox - $ wget https://dl.bintray.com/mitchellh/vagrant/vagrant_1.6.5_x86_64.deb - $ sudo dpkg -i vagrant_1.6.5_x86_64.deb + $ wget https://dl.bintray.com/mitchellh/vagrant/vagrant_1.7.2_x86_64.deb + $ sudo dpkg -i vagrant_1.7.2_x86_64.deb Deployment of pyAggr3g470r diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index 927a39b2..6952afc3 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -22,7 +22,7 @@ apt-get install -y libxml2-dev libxslt1-dev 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 uninstall -y feedparser
sudo pip3 install feedparser==5.1.2
# copy of the default configuration files for vagrant
cp vagrant/conf.cfg-sample conf/conf.cfg
|