From 7c9b13495bd316d2c768ef110e4bca13d2c72ae3 Mon Sep 17 00:00:00 2001 From: snare Date: Thu, 15 Sep 2016 08:59:03 +1000 Subject: [PATCH] Install pip --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 9384ec9..50679cb 100755 --- a/install.sh +++ b/install.sh @@ -35,9 +35,9 @@ function install_apt { if uname | grep -i Linux &>/dev/null; then sudo apt-get update if echo $PYVER|grep "3\."; then - sudo apt-get -y install libreadline6-dev python3-dev python3-setuptools python3-yaml + sudo apt-get -y install libreadline6-dev python3-dev python3-setuptools python3-yaml python3-pip else - sudo apt-get -y install libreadline6-dev python-dev python-setuptools python-yaml + sudo apt-get -y install libreadline6-dev python-dev python-setuptools python-yaml python-pip fi fi }