2021-04-11, 13:56
@murnaz That error is because the addon is using python 2, but Matrix is python 3. FWIW, if you are comfortable editing the source code, you can change all occurrences of
.iteritems()
to .items()
. Might be other python 2 related errors though.