From 7a955f85cf867c72883f1e6d70e692529d326c29 Mon Sep 17 00:00:00 2001 From: Salt Date: Fri, 4 Sep 2020 06:37:31 -0500 Subject: [PATCH] Add libffi-dev to required packages in localhost-deploy Weird, it's installed by default on Ubuntu but not in Mobian --- localhost-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localhost-deploy.sh b/localhost-deploy.sh index 4f10970..312a88a 100755 --- a/localhost-deploy.sh +++ b/localhost-deploy.sh @@ -11,7 +11,7 @@ if ! command -v ansible > /dev/null 2>&1; then printf "Installing Ansible and related packages\n" if command -v apt > /dev/null 2>&1; then printf "Installing via APT\n" - sudo apt-get install python3-pip python3-setuptools -y + sudo apt-get install libffi-dev python3-pip python3-setuptools -y elif command -v apk > /dev/null 2>&1; then printf "Installing via APK\n" sudo apk add gcc musl-dev py3-cryptography py3-pip py3-setuptools