Commit 6fbb7e6c5c92ae3b757b1189d6f20e333335735b
Exists in
master
and in
4 other branches
Merge pull request #5278 from ZaaLabs/master
Small consistency addition for installation.md
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 | 63 | python --version |
64 | 64 | |
65 | 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 | 68 | # Make sure you can access Python via python2 |
69 | 69 | python2 --version |
... | ... | @@ -72,7 +72,7 @@ Make sure you have the right version of Python installed. |
72 | 72 | sudo ln -s /usr/bin/python /usr/bin/python2 |
73 | 73 | |
74 | 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 | 77 | **Note:** In order to receive mail notifications, make sure to install a |
78 | 78 | mail server. By default, Debian is shipped with exim4 whereas Ubuntu | ... | ... |