From fc401bdbb8bf444e65a59ee4feaac70f98b3cee0 Mon Sep 17 00:00:00 2001 From: pstruebi Date: Wed, 21 May 2025 11:44:44 +0200 Subject: [PATCH] updat the readme --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index e69de29..350e842 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,14 @@ +## System Dependencies for Audio Streaming + +This project uses the `sounddevice` Python package, which requires the PortAudio library to be installed on your system. + +### Install PortAudio on Debian/Ubuntu/Raspberry Pi OS + +Before running the application, install the following system packages: + +```bash +sudo apt-get update +sudo apt-get install libportaudio2 libportaudiocpp0 portaudio19-dev +``` + +If you encounter an error like `OSError: PortAudio library not found` when running the Python scripts, make sure you have installed these dependencies.