kusti8 / hue-plus

A Windows and Linux driver in Python for the NZXT Hue+
GNU General Public License v3.0
229 stars 18 forks source link

Issue with running on ubuntu-server #54

Open rjpiston opened 5 years ago

rjpiston commented 5 years ago

I'm running ubuntu-server 18.04. Hue_plus installed successfully, however whenever I run any command i get the following:

Traceback (most recent call last): File "/usr/local/bin/hue", line 7, in from hue_plus.hue import main File "/home/scdigital/.local/lib/python3.6/site-packages/hue_plus/hue.py", line 11, in from . import picker File "/home/scdigital/.local/lib/python3.6/site-packages/hue_plus/picker.py", line 3, in from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QColorDialog ImportError: libGL.so.1: cannot open shared object file: No such file or directory

I'm assuming It's looking for something to do with launching the GUI, however, I'm running ubuntu server.

Any help would be appreciated.

Thanks!

rjpiston commented 5 years ago

I resolved the issue by installing libgl1-mesa-glx

sudo apt install libgl1-mesa-glx

Not sure what ramifications or benefits this gets me on a headless server :)