From f8fd4c8f03f7c152da2bccae348b4628434c5203 Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Sat, 25 Jul 2020 17:28:29 -0400 Subject: [PATCH] Adding wheel install to the quick-install script Ansible spews error messages if wheel isn't installed. They're benign, but it's cleaner if we just pre-install wheel. --- quick-install | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quick-install b/quick-install index 4727078f3..cfb127163 100755 --- a/quick-install +++ b/quick-install @@ -19,6 +19,8 @@ pushd $(mktemp -d) sudo apt-get install -y python3-venv python3 -m venv venv . venv/bin/activate +# Ansible depends on wheel. +pip install wheel==0.34.2 pip install ansible==2.9.10 echo "[defaults] roles_path = $PWD