We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d845bd3 commit 0ee5bc3Copy full SHA for 0ee5bc3
2 files changed
installation/routines/setup_jukebox_core.sh
@@ -30,6 +30,8 @@ _jukebox_core_install_python_requirements() {
30
source "$VIRTUAL_ENV/bin/activate"
31
32
pip install --upgrade pip
33
+ # Remove RPi.GPIO, if still installed - see https://github.com/MiczFlor/RPi-Jukebox-RFID/issues/2313
34
+ pip uninstall rpi-gpio
35
pip install --no-cache-dir -r "${INSTALLATION_PATH}/requirements.txt"
36
}
37
requirements.txt
@@ -21,7 +21,8 @@ requests
21
tornado
22
23
# RPi's GPIO packages:
24
-RPi.GPIO
+# use shim to keep current RPi.GPIO behavior also under Bookworm - see https://github.com/MiczFlor/RPi-Jukebox-RFID/issues/2313
25
+rpi-lgpio
26
gpiozero
27
28
# PyZMQ is a special case:
0 commit comments