Pyinstaller compile to exe

前端 未结 8 1374
旧时难觅i
旧时难觅i 2021-01-18 02:09

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

8条回答
  •  广开言路
    2021-01-18 02:42

    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.

提交回复
热议问题