cx_Freeze 无法包含 Cython .pyx 模块

Posted

技术标签:

【中文标题】cx_Freeze 无法包含 Cython .pyx 模块【英文标题】:cx_Freeze fails to include Cython .pyx module 【发布时间】:2015-07-30 21:18:36 【问题描述】:

我有一个 Python 应用程序,我最近添加了一个 Cython 模块。使用 pyximport 从脚本运行它可以正常工作,但我还需要一个使用 cx_Freeze 构建的可执行版本。

麻烦的是,尝试构建它会给我一个可执行文件,该可执行文件会引发 ImportError 尝试导入 .pyx 模块。

我像这样修改了我的setup.py,看看我是否可以让它先编译 .pyx,以便 cx_Freeze 可以成功打包它:

from cx_Freeze import setup, Executable
from Cython.Build import cythonize


setup(name='projectname',
      version='0.0',
      description=' ',
      options="build_exe": "packages":["pygame","fx"],'build_ext': 'compiler': 'mingw32',
      ext_modules=cythonize("fx.pyx"),
      executables=[Executable('main.py',targetName="myproject.exe",base = "Win32GUI")],
      requires=['pygcurse','pyperclip','rsa','dill','numpy']
      )

...但是在构建时给我的只是No module named fx 在 cx_Freeze 中。

我该如何进行这项工作?

【问题讨论】:

【参考方案1】:

解决方案是对setup() 进行两次单独的调用;一个用 Cython 构建 fx.pyx,然后一个用 cx_Freeze 打包 exe。这是修改后的setup.py

from cx_Freeze import Executable
from cx_Freeze import setup as cx_setup
from distutils.core import setup
from Cython.Build import cythonize

setup(options='build_ext': 'compiler': 'mingw32',
      ext_modules=cythonize("fx.pyx"))

cx_setup(name='myproject',
      version='0.0',
      description='',
      options="build_exe": "packages":["pygame","fx"],
      executables=[Executable('main.py',targetName="myproject.exe",base = "Win32GUI")],
      requires=['pygcurse','pyperclip','rsa','dill','numpy']
      )

【讨论】:

仅供参考,为了使其正常工作,您必须输入“python setup-cython.py build_ext --inplace”,然后输入“python setup-cython.py build”

以上是关于cx_Freeze 无法包含 Cython .pyx 模块的主要内容,如果未能解决你的问题,请参考以下文章

使用 cx_Freeze 将 Python 转换为 exe 时 Scipy 和 Cython 出现 AttributeError

通过Cython打包py文件,生成包含pyd的wheel(.whl)

cx_Freeze 包含依赖的 py 文件

使用 cx_Freeze 时如何包含图像?

将 Cython 生成的 .c 文件编译成 exe 文件

Cx_Freeze - 自动包含模块