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 e171d7c commit 450fb45
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions stage-honeypi/01-install-honeypi/00-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,16 @@ on_chroot << EOF
echo '>>> Install NTP for time synchronisation with witty Pi'
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
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 --install-option="--force-pi"
pip3 install Adafruit_Python_DHT --install-option="--force-pi"
pip3 install Adafruit_DHT --config-settings="--force-pi"
pip3 install Adafruit_Python_DHT --config-settings="--force-pi"
echo '>>> Install software for Webinterface'
lighttpd-enable-mod fastcgi
Expand Down

0 comments on commit 450fb45

Please sign in to comment.