summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2017-01-28 19:54:21 +0000
committerJavier Jardón <jjardon@gnome.org>2017-01-28 19:54:21 +0000
commit239d69b298fbcd9dc399e34d2833b5cd0a0e9741 (patch)
treebaa96036602405aa734f9fee411ae154be6074db
parent62a40a64865907c05320aa64bcb259150d7b2824 (diff)
downloadybd-jjardon/no_system_pip.tar.gz
install_dependencies.sh: Do not install pipjjardon/no_system_pip
-rwxr-xr-xinstall_dependencies.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install_dependencies.sh b/install_dependencies.sh
index c45d9a2..f007de4 100755
--- a/install_dependencies.sh
+++ b/install_dependencies.sh
@@ -32,7 +32,7 @@ installed=false
which apt-get 2>&1 > /dev/null
if [ $? -eq 0 ]; then
$SUDO apt-get -qq update
- $SUDO apt-get -qq install build-essential gawk git m4 wget python-pip
+ $SUDO apt-get -qq install build-essential gawk git m4 wget
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1
@@ -43,7 +43,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 python python-pip
+ $SUDO dnf install -y which make automake gcc gcc-c++ gawk git m4 wget python
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1
@@ -54,7 +54,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 python python-pip
+ $SUDO yum install -y which make automake gcc gcc-c++ gawk git m4 wget python
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1
@@ -65,7 +65,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 python2 python2-pip
+ $SUDO pacman -S --noconfirm which make automake gcc gawk git m4 wget python2
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1