From 301f44cbefb3e0e35d878a06fb4eec2d2cf0eb22 Mon Sep 17 00:00:00 2001 From: Dylan Rathbone Date: Tue, 3 Nov 2020 09:16:49 +1000 Subject: [PATCH] Add python2 pip for Debian installs --- bin/install-ansible | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/install-ansible b/bin/install-ansible index 85824f6..1d9fa2f 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -9,7 +9,7 @@ if [[ $ID = "amzn" ]]; then python3-pip \ python2-boto3 \ python2-botocore \ - python-pip \ + python-pip else # FIXME: Currently assumes Debian-based @@ -17,7 +17,7 @@ else apt-get install -y \ python3-dev \ python3-pip \ - python-pip \ + python-pip fi export PATH=/usr/local/bin:$PATH export PIP_DEFAULT_TIMEOUT=60