From 49236f3f1d6f16868b519c25215dbb178719a532 Mon Sep 17 00:00:00 2001 From: "Daniel A. Maierhofer" Date: Fri, 9 Feb 2018 17:05:27 +0100 Subject: [PATCH] Update install to python3 --- install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install b/install index 580c7f9..21b74f0 100755 --- a/install +++ b/install @@ -1,7 +1,7 @@ #/bin/bash if [ ! -d ".env_ansible" ]; then -virtualenv .env_ansible +virtualenv3 .env_ansible fi source .env_ansible/bin/activate -pip install --upgrade pip -pip install ansible +pip3 install --upgrade pip +pip3 install --upgrade ansible