Skip to content

Commit

Permalink
deploy: fix bookworm raspberry pi 3b+ installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
lida2003 committed Sep 30, 2024
1 parent 3774237 commit a65578a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/install_common_libraries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ source ~/.profile
# Debian Bookdown does not like pip install wthout a virtualenv, so do apt installs instead
# Also need gstreamer1.0-libcamera, as the libcamerasrc gst element has moved
source /etc/os-release
if [ "$ID" == "debian" ] && [ "$VERSION_CODENAME" == "bookworm" ]; then
if [ "$ID" == "debian" ] || [ "$VERSION_CODENAME" == "bookworm" ]; then
sudo apt install -y meson python3-netifaces gstreamer1.0-libcamera
else
sudo python3 -m pip install --upgrade pip
Expand Down

0 comments on commit a65578a

Please sign in to comment.