From 27ee5d11fb8221568304dc4b4d1d8052403ef2b6 Mon Sep 17 00:00:00 2001 From: waltem01 Date: Thu, 4 Apr 2024 15:22:23 +0200 Subject: [PATCH] additional installation prerequisities --- API/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/API/README.md b/API/README.md index 0793680..5051303 100644 --- a/API/README.md +++ b/API/README.md @@ -9,7 +9,12 @@ This is a REST API to access the Raspberry PI RGB LED Matrix over HTTP. 1. Install `Raspberry PI OS Lite` using the [official installer](https://www.raspberrypi.com/software/). 2. Make sure you have Python version 3.9.* installed, as the [library](https://github.com/hzeller/rpi-rgb-led-matrix) uses a now deprecated module and as it is the only version proven to work. 3. Install all necessary dependencies shown within this library's [documentation](https://github.com/hzeller/rpi-rgb-led-matrix/blob/master/bindings/python/README.md). -4. It is recommended to access the UI and SSH-Connection to the RPI using an access point. To see how to set one up, see this [guide](https://raspberrytips.com/access-point-setup-raspberry-pi/#setting-up-an-access-point-on-raspberry-pi-os-bookworm). +4. Make sure to read and understand further improvements, fixes and optimizations from the main [README](https://github.com/hzeller/rpi-rgb-led-matrix/blob/master/README.md#troubleshooting) of the original library. +5. It is recommended to access the UI and SSH-Connection to the RPI using an access point. To see how to set one up, see this [guide](https://raspberrytips.com/access-point-setup-raspberry-pi/#setting-up-an-access-point-on-raspberry-pi-os-bookworm). +6. Install project specific dependencies: + ```bash + sudo apt install -y python3-flask python3-flask-cors python3-waitress + ``` ## Installation