I am trying to compile a Kivy application to a windows exe, but I keep receiving an attribute error: AttributeError: \'str\' object has no attribute \'items\'
I have
If you are still having this issue, here is what solved it for me:
pip install --upgrade setuptools
I've tried installing six (in my case, it wasn't already installed), but since it seems that it is looking for _vendor.six
and not just six
, that didn't solve it. Somehow, upgrading setuptools solves it.