From 6095328379cdef174d7f9cfa70277dccc07241fb Mon Sep 17 00:00:00 2001 From: benderl Date: Thu, 21 Oct 2021 09:21:39 +0200 Subject: [PATCH] add python3 requests library (#1648) --- runs/atreboot.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runs/atreboot.sh b/runs/atreboot.sh index 7414e66fd..7cfdfd30f 100755 --- a/runs/atreboot.sh +++ b/runs/atreboot.sh @@ -277,6 +277,11 @@ if python3 -c "import pymodbus" &> /dev/null; then else sudo pip3 install pymodbus fi +if python3 -c "import requests" &> /dev/null; then + echo 'python requests installed...' +else + sudo pip3 install requests +fi #Prepare for jq in Python if python3 -c "import jq" &> /dev/null; then echo 'jq installed...'