I'm trying to use CircuitPython lib but got some troubles, I put the files from the Circuitpython bundle in /lib
this works
$ ipython3 Python 3.7.3, blabla info >> import sys >> sys.path.append("/lib/adafruit_hid") >> import adafruit_hid
this works too
$ python3 Python 3.7.3, same blabla info >> import sys >> sys.path.append("/lib/adafruit_hid") >> import adafruit_hid
this doesn't
$ sudo python3 Python 3.7.3, same blabla info >> import sys >> sys.path.append("/lib/adafruit_hid") >> import adafruit_hid ModuleNotFoundError: No module named 'adafruit_hid'
And as the script needs to run as root
I'm stuck