我有一个要打包的应用程序,其中包含一个图像作为数据文件,我尝试运行这个 setup.py 脚本:
from distutils.core import setup
import py2exe
import matplotlib
file_dati=[]
file_dati.append(matplotlib.get_py2exe_datafiles())
file_dati.append(('img1','C:\Users\MZompetta.000\Desktop\20130114_assortimenti\img1.gif'))
setup(console=[{"script": "Int_assortimenti.py"}],
options = {
"py2exe": {
"dll_excludes": ["libzmq.dll", "MSVCP90.dll"]
}
}, data_files=file_dati
)
但我收到此错误:
AttributeError:“元组”对象没有属性“拆分”
错误是指该行:data_files=file_dati
我尝试了其他方法来编写 data_files 但没有办法。
任何人都可以帮助我吗?