Skip to content

Commit

Permalink
fixed breaking pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
JavanXD committed Dec 27, 2023
1 parent 82ceae4 commit 12fd9b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stage-honeypi/01-install-honeypi/00-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ dpkg-reconfigure -f noninteractive ntp
echo '>>> Upgrade pip to at least v22.3'
python3 -m pip install --upgrade pip # upgrade pip to at least v22.3
echo '>>> Install software for measurement python scripts'
pip3 install -r /home/${FIRST_USER_NAME}/HoneyPi/requirements.txt --upgrade
pip3 install -r /home/${FIRST_USER_NAME}/HoneyPi/requirements.txt
echo '>>> Install deprecated DHT library for measurement python scripts'
# deprecated, but still used for Pi Zero WH because of known issues such as https://github.com/adafruit/Adafruit_CircuitPython_DHT/issues/73 - no longer working on bullseye
python3 -m pip install --upgrade pip setuptools wheel # see: https://stackoverflow.com/a/72934737/6696623
pip3 install Adafruit_DHT --config-settings="--force-pi"
pip3 install Adafruit_Python_DHT --config-settings="--force-pi"
python3 -m pip install --upgrade setuptools wheel # see: https://stackoverflow.com/a/72934737/6696623
pip3 install Adafruit_DHT --config-settings="force-pi=1"
pip3 install Adafruit_Python_DHT --config-settings="force-pi=1"
echo '>>> Install software for Webinterface'
lighttpd-enable-mod fastcgi
Expand Down

0 comments on commit 12fd9b2

Please sign in to comment.