Sorry if this is a strange question (python beginner), but when I'm importing
from brachiograph import BrachioGraph
it says:
>>> from brachiograph import BrachioGraph Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/pi/BrachioGraph/brachiograph.py", line 4, in <module> import readchar ModuleNotFoundError: No module named 'readchar'
And this is very confusing, as I don't know what this means, and I can't find anything answering it.
My second question might be fixed if the first question is resolved, I don't know, but when I put in
bg = BrachioGraph(inner_arm=<8>, outer_arm=<8>)
it gives me an 'invalid syntax' error, pointing to the beginning of '<8>'
Please help!