# LED Matrix Installation Guide ## Quick Start (Recommended for First-Time Installation) # System Setup & Installation 1. Open PowerShell and ssh into your Raspberry Pi with ledpi@ledpi (or Username@Hostname) ```bash ssh ledpi@ledpi ``` 2. Update repositories, upgrade raspberry pi OS, install git ```bash sudo apt update && sudo apt upgrade -y sudo apt install -y git python3-pip cython3 build-essential python3-dev python3-pillow scons ``` 3. Clone this repository: ```bash git clone https://github.com/ChuckBuilds/LEDMatrix.git cd LEDMatrix ``` 4. First-time installation (recommended) ```bash chmod +x first_time_install.sh sudo ./first_time_install.sh ``` ----- Old Instructions left for posterity ------ 4. Install dependencies: ```bash sudo pip3 install --break-system-packages -r requirements.txt ``` --break-system-packages allows us to install without a virtual environment 5. Install rpi-rgb-led-matrix dependencies: ```bash cd rpi-rgb-led-matrix-master ``` ```bash sudo make build-python PYTHON=$(which python3) ``` ```bash cd bindings/python sudo python3 setup.py install ``` Test it with: ```bash python3 -c 'from rgbmatrix import RGBMatrix, RGBMatrixOptions; print("Success!")' ``` ## Important: Sound Module Configuration 1. Remove unnecessary services that might interfere with the LED matrix: ```bash sudo apt-get remove bluez bluez-firmware pi-bluetooth triggerhappy pigpio ``` 2. Blacklist the sound module: ```bash cat <