13 lines
219 B
Bash
13 lines
219 B
Bash
#!/bin/bash
|
|
|
|
sudo -H pip3 install -u pip
|
|
|
|
cd rpi-rgb-led-matrix || exit 1
|
|
|
|
make build-python PYTHON="$(which python3)"
|
|
sudo make install-python PYTHON="$(which python3)"
|
|
|
|
cd ..
|
|
|
|
sudo -H pip3 install -r requirements.txt
|