Commit c6d6c0d114e66ff6424f1b1238f051f8321d49eb

Authored by Nate Beck
1 parent cbb5b000

Update installation.md

Add the -y option to the python apt-get install commands to be consistent with the rest of the Document.
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
doc/install/installation.md
@@ -63,7 +63,7 @@ Make sure you have the right version of Python installed. @@ -63,7 +63,7 @@ Make sure you have the right version of Python installed.
63 python --version 63 python --version
64 64
65 # If it's Python 3 you might need to install Python 2 separately 65 # If it's Python 3 you might need to install Python 2 separately
66 - sudo apt-get install python2.7 66 + sudo apt-get install -y python2.7
67 67
68 # Make sure you can access Python via python2 68 # Make sure you can access Python via python2
69 python2 --version 69 python2 --version
@@ -72,7 +72,7 @@ Make sure you have the right version of Python installed. @@ -72,7 +72,7 @@ Make sure you have the right version of Python installed.
72 sudo ln -s /usr/bin/python /usr/bin/python2 72 sudo ln -s /usr/bin/python /usr/bin/python2
73 73
74 # For reStructuredText markup language support install required package: 74 # For reStructuredText markup language support install required package:
75 - sudo apt-get install python-docutils 75 + sudo apt-get install -y python-docutils
76 76
77 **Note:** In order to receive mail notifications, make sure to install a 77 **Note:** In order to receive mail notifications, make sure to install a
78 mail server. By default, Debian is shipped with exim4 whereas Ubuntu 78 mail server. By default, Debian is shipped with exim4 whereas Ubuntu