我想生成一個可執行文件。我現在用的是包py2exe與matplotlib,numpy和pylab
import sys
import matplotlib.pyplot as plt
from pylab import *
from numpy import *
的setup.py如下
from distutils.core import setup
import py2exe
import matplotlib
setup(console=['<python file>'],data_files=matplotlib.get_py2exe_datafiles(),)
,但我得到pyplot.pyc
Import Error: no module named backend_tkagg
任何關係的錯誤周圍進行修復?
的py2exe wiki有一個頁面中的所有有關獲取matplotlib和py2exe工作。見http://www.py2exe.org/index.cgi/MatPlotLib –