使用py2exe将python转换为exe

时间:2013-11-24 17:09:42

标签: python matplotlib py2exe

我的目标是将py文件转换为exe文件。

我有一个使用以下库的python文件:

import matplotlib
matplotlib.use('TkAgg')
import numpy as np 
import scipy import signal
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, NavigationToolbar2TkAgg
from matplotlib.figure import Figure
import Tkinter as Tk 
import tkFileDialog

我使用的设置文件:

from distutils.core import setup
import py2exe
setup(
      console =['name of my python file'],
)

我已经按照youtube上的教程进行了操作,并成功创建了一个exe文件。 但是当我运行它时,我获得了以下反馈。

Could not find the matplotlib data files.

您能告诉我发生了什么并为我提供解决方案吗? 非常感谢你。

1 个答案:

答案 0 :(得分:0)

py2exe网站上有关于如何使用matplotlib的教程。 http://www.py2exe.org/index.cgi/MatPlotLib