之前有人问过这个问题,我似乎无法让我的 PyInstaller 正常工作。我在 mainscript.py 文件中调用了以下代码:
def resource_path(relative_path):
""" Get absolute path to resource, works for dev and for PyInstaller """
try:
# PyInstaller creates a temp folder and stores path in _MEIPASS
base_path = sys._MEIPASS
except Exception:
base_path = os.path.abspath(".")
return os.path.join(base_path, relative_path)
当我运行 py 文件(在 IDLE 中)时,我的应用程序运行良好并加载了所有数据文件。但是,当我将它与 PyInstaller 2.1(一种文件方法)捆绑在一起时,我在 exe 构建后收到以下错误:
Traceback (most recent call last):
File "<string>", line 37, in <module>
WindowsError: [Error 3] The system cannot find the path
specified: 'C:\\Users\\Me\\AppData\\Local\\Temp\\_MEI188722\\eggs/*.*'
有谁知道我哪里出错了?谢谢!
** 编辑 **
这正是我想要做的。
我的主脚本有一个如下所示的设置(导入)。本质上,我希望能够在其中包含 Matplotlib、底图和资源路径:
import os,sys
import matplotlib
matplotlib.use('WX')
import wx
from matplotlib.backends.backend_wx import FigureCanvasWx as FigureCanvas
from matplotlib.backends.backend_wx import NavigationToolbar2Wx
from mpl_toolkits.basemap import Basemap
from matplotlib.figure import Figure
import matplotlib.pyplot as plt
import Calculate_Distance # A personal py file of mine
def resource_path(relative_path):
""" Get absolute path to resource, works for dev and for PyInstaller """
try:
# PyInstaller creates a temp folder and stores path in _MEIPASS
base_path = sys._MEIPASS
except Exception:
base_path = os.path.abspath(".")
return os.path.join(base_path, relative_path)
bmap=wx.Bitmap(resource_path('test_image.png'))
print 'hello'
我正在使用 PyInstaller 2.1。我也在使用 Python 2.7.5(32 位)。我的操作系统是 Windows 8(64 位)。我的 Matplotlib 是 1.3.0,底图是 1.0.6。Wxpython 是 2.8.12.1 (Unicode)。
我去指挥并做:> pyinstaller myscript.py
。这会生成我稍微编辑的 .spec 文件。以下是我编辑的规范文件:
data_files = [('Calculate_Distance.py', 'C:\\Users\\Me\\Documents\\MyFolder\\Calculate_Distance.py',
'DATA'), ('test_image.png', 'C:\\Users\\Me\\Documents\\MyFolder\\test_image.png',
'DATA')]
includes = []
excludes = ['_gtkagg', '_tkagg', 'bsddb', 'curses', 'email', 'pywin.debugger',
'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl',
'Tkconstants', 'Tkinter']
packages = []
dll_excludes = []
dll_includes = []
a = Analysis(['myscript.py'],
pathex=['C:\\Users\\Me\\Documents\\MyFolder','C:\\Python27\\Lib\\site-packages\\mpl_toolkits\\basemap\\*'],
hiddenimports=[],
hookspath=None,
runtime_hooks=None)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
a.binaries - dll_excludes + dll_includes + data_files,
name='MyApplication.exe',
debug=False,
strip=None,
upx=True,
console=True )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=None,
upx=True,
name='MyApplication')
我希望这是一个单文件可执行文件,因此数据文件应该打包在可执行文件中。在其他 pyinstaller 上,我通常没有遇到 MEIPASS 的问题。但是,由于 Matplotlib 和 Basemap,我需要使用 2.1。如果有人可以完美地构建这个 exe - 你能告诉我我需要调整什么吗?谢谢!
****编辑****
如果有人能弄清楚如何用 py2exe 做到这一点——那也太好了。任何我可以把它变成一个可执行文件的方法都是值得的!