cx_freeze Matplotlib 问题

Posted

技术标签:

【中文标题】cx_freeze Matplotlib 问题【英文标题】:cx_freeze Matplotlib issue 【发布时间】:2017-07-31 09:13:17 【问题描述】:

似乎有些人正在努力构建使用 Matplotlib 库的 Python 可执行文件。

我正在使用 CX_Freeze 并且可以在没有图形的情况下为我的 GUI 创建可执行文件,但是当添加带有 matplolib 库的图形时,当我尝试运行可执行文件时出现错误:

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

有没有人设法让这个工作?

【问题讨论】:

【参考方案1】:

将此行添加到您的 setup.py 文件中:

addtional_mods = ['numpy.core._methods']

【讨论】:

以上是关于cx_freeze Matplotlib 问题的主要内容,如果未能解决你的问题,请参考以下文章

matplotlib 数据的 cx_freeze 错误

使用 cx_Freeze 导入 matplotlib.pyplot 和 BeautifulSoup

cx_freeze 问题与 mac 上的相对路径

打开 cx_freeze 构建的 exe 文件时出错

cx_freeze 忽略自定义变量模块

如何减少 cx_Freeze 编译的 Python 可执行文件大小?