updated db library

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-08 19:43:58 +01:00
parent e0126cf085
commit 90b9aff632
2 changed files with 6 additions and 15 deletions

View File

@ -18,17 +18,9 @@ grant all privileges on pixeltube_db . * to 'pxm'@'localhost';
flush privileges;
# Install Flask for the web server
sudo apt-get install python3-flask
# Install Flask-MySQLdb for MySQL integration with Flask
sudo apt-get install python3-flask-mysqldb
# Install python-osc for handling Art-Net messages
sudo apt-get install python3-osc
# Install neopixel library for controlling WS2812B LED strip
sudo apt-get install python3-rpi-ws281x python3-adafruit-circuitpython-neopixel
# Install wifi library for Wi-Fi management
sudo apt-get install python3-wifi
sudo apt install python3-flask -y
sudo apt install python3-flask-mysqldb -y
sudo apt install python3-osc -y
sudo apt install python3-rpi-ws281x python3-adafruit-circuitpython-neopixel -y
sudo apt install python3-wifi -y
sudo apt install python3-pymysql -y

View File

@ -3,4 +3,3 @@ neopixel==0.0.1
pymysql==1.1.0
python_osc==1.8.3
Requests==2.31.0
wifi==0.3.8