0

我无法从我的 Python 脚本创建一个有效的exe文件。我能够将其缩小到 matplotlib 的使用范围,但我不知道如何解决。

我使用命令创建exe文件。exe是使用一些“忽略”的导入创建的,例如:pyinstaller --onefile myScript.py

信息:Matplotlib 后端“GTK3Agg”:忽略后端 Gtk3Agg 需要 cairo

当我运行exe时,会出现一个命令窗口,给出一个错误,然后自行终止:

错误:运行时错误找不到 matplotlib 数据文件

如果我从 Python 终端运行代码,一切正常。如果我删除 matplotlib 和图形相关的线,则正确创建exe 。

一些(pyinstaller 和 matplotlib - 执行 .exe 时出错)声称解决方案是更新 pyinstaller。我做了,它没有帮助。

有些人建议不要使用plt关闭控制台时出现 Python Matplotlib 运行时错误),但后来我无法使subplot函数工作。

我觉得这个链接(http://www.py2exe.org/index.cgi/MatPlotLib)是相关的,但我不明白我到底需要做什么。我尝试时遇到其他错误。

这是我的代码:

import  tkinter           as tk
import  tkinter.ttk       as ttk
import  matplotlib.pyplot as plt

class myApp(tk.Frame):
    def __init__(self, parent, *args, **kwargs):
        tk.Frame.__init__(self, parent, *args, **kwargs)
        self.parent = parent
        myFrame = ttk.LabelFrame(self.parent, text="FRAME", borderwidth=5)
        myFrame.grid(row=0, column=2, padx=5, pady=5, sticky='NS')
        myButton = ttk.Button(myFrame, width=12, text="SHOW GRAPH", command=self.showGraph)    .grid(row=0, column=1, sticky=tk.S)

    def showGraph(self):
        fig, axs = plt.subplots(2, 3)
        plt.show(block=False)


def main(root):
    app = myApp(root)
    root.wm_title("MyApp")
    root.mainloop()

if __name__ == "__main__":
    root = tk.Tk()
    main(root)
else:
    pass 

注意:我在 Windows 10 上运行 Python 3.8.3,pip 版本 20.2.2。

4

1 回答 1

0

如果您使用 .spec 文件,我必须在我的文件中添加它以消除该错误:

from PyInstaller.utils.hooks import exec_statement
mpl_data_dir = exec_statement("import matplotlib; print(matplotlib._get_data_path())")
datas=[(mpl_data_dir, 'matplotlib\\mpl-data')]

希望这会有所帮助。

于 2020-08-20T18:35:55.170 回答