Skip to content

Commit

Permalink
add python3 requests library (#1648)
Browse files Browse the repository at this point in the history
  • Loading branch information
benderl committed Oct 21, 2021
1 parent bae8c5d commit 6095328
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions runs/atreboot.sh
Expand Up @@ -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...'
Expand Down

0 comments on commit 6095328

Please sign in to comment.