Update problems and how to fix

Hi @ll,

I just updated my Zynthian (2020-04-23-zynthianos-buster-lite-1.0.0) after a moth and got some problems. Here are my fixes - unless I caused these problems myself.

First problem:

May 23 10:35:57 zynthian startx[462]:   File "/home/pi/zynthian-ui/zyngui/__init__.py", line 53, in <
May 23 10:35:57 zynthian startx[462]:     from zyngui.zynthian_gui_audio_recorder import zynthian_gui
May 23 10:35:57 zynthian startx[462]:   File "/home/pi/zynthian-ui/zyngui/zynthian_gui_audio_recorder
May 23 10:35:57 zynthian startx[462]:     import mutagen
May 23 10:35:57 zynthian startx[462]: ModuleNotFoundError: No module named 'mutagen'
May 23 10:35:58 zynthian startx[462]:  PNG file: /zynthian/config/img/fb_zynthian_error_ip.png - Appl
May 23 10:35:58 zynthian startx[462]: /zynthian/config/img/fb_zynthian_error_ip.png is 480x320 PNG im
May 23 10:35:58 zynthian startx[462]:   Zooming image by 100%...done
May 23 10:35:58 zynthian startx[462]:   Merging...done
May 23 10:35:58 zynthian startx[462]:   Building XImage...done

Solution: apt install python3-mutagen

Second problem:

May 23 10:37:52 zynthian startx[458]:   File "/home/pi/zynthian-ui/zyngui/zynthian_gui_stepsequencer.
May 23 10:37:52 zynthian startx[458]:     self.libseq = ctypes.CDLL(dirname(realpath(__file__))+"/../
May 23 10:37:52 zynthian startx[458]:   File "/usr/lib/python3.7/ctypes/__init__.py", line 356, in __
May 23 10:37:52 zynthian startx[458]:     self._handle = _dlopen(self._name, mode)
May 23 10:37:52 zynthian startx[458]: OSError: /home/pi/zynthian-ui/zyngui/../zynseq/build/libzynseq.
May 23 10:37:53 zynthian startx[458]:  PNG file: /zynthian/config/img/fb_zynthian_error_ip.png - Appl
May 23 10:37:53 zynthian startx[458]: /zynthian/config/img/fb_zynthian_error_ip.png is 480x320 PNG im
May 23 10:37:53 zynthian startx[458]:   Zooming image by 100%...done
May 23 10:37:53 zynthian startx[458]:   Merging...done
May 23 10:37:53 zynthian startx[458]:   Building XImage...done

Solution: cd /zynthian/zynthian-ui/zynseq && ./build.sh

Regards, Holger

1 Like

Hi @C0d3man!

The raspbian repo version of mutagen don’t work because it has not wave file support yet!

There is a recipe for installing mutagen from repo code, and it should been installed when updating. If it didn’t succeed, we should investigate what the problem is. Perhaps simply updating again solves the problem…

Please, uninstall the mutagen repo-version and try updating again. If not, try to figure what is failing with the updating process …

Thanks a lot,

1 Like

Hi @jofemodo,

ok - my fault: I forgot to rebase my (dev) zynthian-sys repo…

I deinstalled python3-mutagen and updated again: Now it works!

Regards, Holger