summaryrefslogtreecommitdiff
path: root/install_dependencies.sh
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2016-08-14 09:55:35 +0100
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2016-08-14 10:12:13 +0100
commitafb24777f5988260564c5ea579a0f93af1e62061 (patch)
treebc0f3795faa3deaafe4591148ccfcf1880dd3fdc /install_dependencies.sh
parentb4a1be9661959119f16471e51523819d35e1fc45 (diff)
downloadybd-afb24777f5988260564c5ea579a0f93af1e62061.tar.gz
Add python to dependencies
Diffstat (limited to 'install_dependencies.sh')
-rwxr-xr-xinstall_dependencies.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/install_dependencies.sh b/install_dependencies.sh
index df20037..e70e58a 100755
--- a/install_dependencies.sh
+++ b/install_dependencies.sh
@@ -38,7 +38,7 @@ fi
# install for fedora
which dnf 2>&1 > /dev/null
if [ $? -eq 0 ] && [ $installed = false ]; then
- sudo dnf install -y which make automake gcc gcc-c++ gawk git m4 wget
+ sudo dnf install -y which make automake gcc gcc-c++ gawk git m4 wget python
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1
@@ -49,7 +49,7 @@ fi
# install for aws
which yum 2>&1 > /dev/null
if [ $? -eq 0 ] && [ $installed = false ]; then
- sudo yum install -y which make automake gcc gcc-c++ gawk git m4 wget
+ sudo yum install -y which make automake gcc gcc-c++ gawk git m4 wget python
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1
@@ -60,7 +60,7 @@ fi
# install for Arch
which pacman 2>&1 > /dev/null
if [ $? -eq 0 ] && [ $installed = false ]; then
- sudo pacman -S --noconfirm which make automake gcc gawk git m4 wget
+ sudo pacman -S --noconfirm which make automake gcc gawk git m4 wget python
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1