So I’m trying to follow this:
https://wiki.zynthian.org/index.php/Zynthian_MOD-GUI_Guide
The mod-sdk service looks to be trying to start this
/zynthian/zynthian-sw/mod-sdk/development_server.py
running that manually gave me an error for a missing pyinotify
which I fixed by:
apt install -y python3-pyinotify
but now it gives an error of
root@zynthian-pi5:~# /zynthian/zynthian-sw/mod-sdk/development_server.py
Using pylilv for plugin info (with checks)
Traceback (most recent call last):
File "/zynthian/zynthian-sw/mod-sdk/development_server.py", line 4, in <module>
from modsdk.webserver import run
File "/zynthian/zynthian-sw/mod-sdk/modsdk/webserver.py", line 495, in <module>
class Screenshot(JsonRequestHandler):
File "/zynthian/zynthian-sw/mod-sdk/modsdk/webserver.py", line 496, in Screenshot
@web.asynchronous
^^^^^^^^^^^^^^^^
AttributeError: module 'tornado.web' has no attribute 'asynchronous'
Is it me, or is something broken?..