From c6d6c0d114e66ff6424f1b1238f051f8321d49eb Mon Sep 17 00:00:00 2001 From: Nate Beck Date: Sun, 6 Oct 2013 02:55:01 -0700 Subject: [PATCH] Update installation.md Add the -y option to the python apt-get install commands to be consistent with the rest of the Document. --- doc/install/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/install/installation.md b/doc/install/installation.md index 71a587d2ee3..01af95d40ee 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -63,7 +63,7 @@ Make sure you have the right version of Python installed. python --version # If it's Python 3 you might need to install Python 2 separately - sudo apt-get install python2.7 + sudo apt-get install -y python2.7 # Make sure you can access Python via python2 python2 --version @@ -72,7 +72,7 @@ Make sure you have the right version of Python installed. sudo ln -s /usr/bin/python /usr/bin/python2 # For reStructuredText markup language support install required package: - sudo apt-get install python-docutils + sudo apt-get install -y python-docutils **Note:** In order to receive mail notifications, make sure to install a mail server. By default, Debian is shipped with exim4 whereas Ubuntu -- GitLab