ImportError with cx_Freeze and pyinstaller

前端 未结 4 1340
轮回少年
轮回少年 2021-01-03 02:24

I was using pyinstaller before to try and get my app with twisted as an executable, but I got this error when executing:

Traceback (most recent call last):
          


        
4条回答
  •  既然无缘
    2021-01-03 03:28

    Try adding to build_exe_options a specific include of the subpackage i.e. "includes": ["zope.interface"], this should force the inclusion of it.

提交回复
热议问题