from . import _methods ImportError: cannot import name '_methods' in cx-freeze python

試著忘記壹切 提交于 2019-12-17 19:38:19

问题


exe build successfully by using cx-freeze. But it shows the following error when I execute the exe file:

from . import _methods ImportError: cannot import name '_methods'


回答1:


This question was already answer here: Why am I getting this ImportError? but for the sake of completeness here is the answer for this specific case: cx_freeze is not importing the optional module _method, so you have to tell him explicitly to do it.

additional_mods = ['numpy.core._methods', 'numpy.lib.format']
setup(name='xyz', 
      version='0.4', 
      description='xyz script',
      options = {'build_exe': {'includes': additional_mods}},
      executables = [Executable('xyz.py')]
    )

In the code above I have to import also format, after _methods. For me the 2 modules where enough, may be you need more.




回答2:


Ok, I think we are in the same boat. i get the idea from the last post, but i'm not so familiar with the grammar and there is some different grammar with the last post in setup.py.

But I get another way to solve this:

add import numpy.core._methods and import numpy.lib.format in your python file.



来源:https://stackoverflow.com/questions/41735413/from-import-methods-importerror-cannot-import-name-methods-in-cx-freeze-p

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!