From 396cd174201d137b57c5af1a08a6d2bcab62fc4e Mon Sep 17 00:00:00 2001 From: Botspot Date: Wed, 11 Aug 2021 09:38:06 -0500 Subject: [PATCH] Pi-Apps python client: ensure python3-pip installed --- apps/Pi-Apps Terminal Plugin (python)/install | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/Pi-Apps Terminal Plugin (python)/install b/apps/Pi-Apps Terminal Plugin (python)/install index a03cbbc..17f16ff 100755 --- a/apps/Pi-Apps Terminal Plugin (python)/install +++ b/apps/Pi-Apps Terminal Plugin (python)/install @@ -7,6 +7,9 @@ function error { exit 1 } +# Get dependencies +"${DIRECTORY}/pkg-install" "python3-pip" "$(dirname "$0")" || exit 1 + #Installing dependencies for search argument pip3 install python-Levenshtein fuzzywuzzy || error "pip3 failed to python-Levenshtein and fuzzywuzzy"