py2exe的相对导入错误

时间:2016-01-06 12:11:01

标签: python py2exe relative-import

我试图为简单的Python脚本生成可执行文件。我的setup.py代码如下所示:

from distutils.core import setup
import py2exe
setup(console=["script.py"])

但是,我收到屏幕截图中显示的错误。有什么我可以尝试解决这个问题吗?我使用的是Windows 10。

enter image description here

1 个答案:

答案 0 :(得分:6)

您的 mf3.py 似乎是importing beyond the top level

假设您的项目结构如下:

folder/
main.py
mod/
    __init__.py
    components/
        __init__.py
        expander.py
        language_id.py
    utilities/
        __init__.py
        functions.py

首先确保

  
    

main.py将子包称为:

  
from mod.components.expander import *
from mod.utilities.functions import *
     

expandder.py和language_id.py可以访问functions.py并使用:

     

from ..utilities.functions import *

向setup.py添加选项

您还可以使用更多py2exe options,以便导入项目所需的所有模块和包。 E.g。

# setup.py
from distutils.core import setup
import py2exe
setup(console=["script.py"],
      options={
              "py2exe":{
                    "optimize": 2,
                    "includes": ["mf1.py", "mf2.py", "mf3.py"], # List of all the modules you want to import
                    "packages": ["package1"] # List of the package you want to make sure that will be imported
               }
       }
    )

通过这种方式,您可以强制导入项目缺失的脚本