我有一个应用程序,其中有两个可执行文件:Flask-SocketIO-Server 和 CefPython 浏览器。我将这两个可执行文件与 PyInstaller 捆绑在一起。带有--onefile 选项的Flask-Server 和带有--onedir 选项的cefpython,因为我无法使用--onefile。现在我决定只对这两种代码(Flask 和 CEFpython)都可执行,所以我的烧瓶服务器有代码来运行 CEF 图形用户界面:
if __name__ == '__main__':
if len(sys.argv) > 1 and sys.argv[1] == 'dev':
print "Running Flask-SocketIO on dev mode"
else:
print "Running Flask-SocketIO on production mode"
path = os.getcwd()
gui_path = path + '\\display_react\\display_react.exe'
print 'Running Graphical User Interface...'
thread.start_new_thread(display_react.main, ()) # Baterias
print 'Initializing server'
socketio.run(app, debug=False)
该代码工作正常,但是当我尝试将此代码与带有 --onefile 选项的 PyInstaller 捆绑在一起时,生成的可执行文件不起作用会导致一些 CEF 依赖项。这里是运行 Pyinstaller 时的错误:
cc(269)] id 20420 没有可用的数据资源 [0727/125110.655:ERROR:content_client.cc(269)] id 20421 没有可用的数据资源 [0727/125110.656:ERROR:content_client.cc(269)] 没有数据资源可用于 id 20422 [0727/125110.656:ERROR:content_client.cc(269)] 没有可用于 id 20417 的数据资源 [0727/125110.680:ERROR:extension_system.cc(72)] 无法解析扩展清单。C:\Users\Ricardo\AppData\Local\Temp_MEI95~1\display_react.py:118:wxPyDeprecationWarning:调用已弃用项 EmptyIcon。使用:类:cc(269)] 没有可用于 id 20417 的数据资源 [0727/125110.680:ERROR:extension_system.cc(72)] 无法解析扩展清单。C:\Users\Ricardo\AppData\Local\Temp_MEI95~1\display_react.py:118:wxPyDeprecationWarning:调用已弃用项 EmptyIcon。使用:类:cc(269)] 没有可用于 id 20417 的数据资源 [0727/125110.680:ERROR:extension_system.cc(72)] 无法解析扩展清单。C:\Users\Ricardo\AppData\Local\Temp_MEI95~1\display_react.py:118:wxPyDeprecationWarning:调用已弃用项 EmptyIcon。使用:类:
Icon
反而
这是我正在使用的 .spec 文件:
# -*- mode: python -*-
block_cipher = None
def get_cefpython_path():
import cefpython3 as cefpython
path = os.path.dirname(cefpython.__file__)
return "%s%s" % (path, os.sep)
cefp = get_cefpython_path()
a = Analysis(['server.py'],
pathex=['C:\\Users\\Ricardo\\addvolt-scanning-tool\\backend'],
binaries=[],
datas=[('PCANBasic.dll', '.'), ('o.ico', '.')], #some dlls i need for flask
hiddenimports=['engineio.async_gevent'], #engineio hidden import for Flask usage
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas + [('locales/en-US.pak', '%s/locales/en-US.pak' % cefp, 'DATA')], # my try to fix that missing dependencies
name='server',
debug=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=True )
编辑:已解决
感谢@cztomczak,我得到了这个工作。问题不在 PyInstaller 上,而是在 wxpython.py 寻找语言环境、资源和子进程的过程中。尽管所有文件都在“temp/dir/_MEIxxx”上,但 wxpython 正在可执行文件的目录中寻找这些文件。所以我通知代码在临时目录中查找这些文件的方法是:
dir_temp = tempfile.gettempdir()
files = []
for i in os.listdir(dir_temp):
if os.path.isdir(os.path.join(dir_temp,i)) and '_MEI' in i:
files.append(i)
dir_temp = dir_temp + str(files[0])
dir_temp = os.path.join(dir_temp, str(files[0]))
dir_temp_locale = os.path.join(dir_temp, 'locales')
dir_temp_subprocess = os.path.join(dir_temp_subprocess, 'subprocess.exe')
print dir_temp
dir_temp = dir_temp.replace("\\", "\\\\")
print dir_temp
print dir_temp_locale
dir_temp_locale = dir_temp_locale.replace("\\", "\\\\")
print dir_temp_locale
dir_temp_supbprocess = dir_temp_subprocess.replace("\\", "\\\\")
print dir_temp_subprocess
...
settings = {'auto_zooming': '-2.5', 'locales_dir_path': dir_temp_locale, 'resources_dir_path': dir_temp, 'browser_subprocess_path': dir_temp_subprocess}
我必须这样做,因为 temp (_MEIxxxx) 上创建的文件夹的名称总是在变化。可能我将来会遇到问题,因为如果应用程序崩溃,_MEIxx 文件夹将不会被删除,如果我尝试重新运行可执行文件,这段代码将有两个 _MEI 文件夹,并且可能根本无法工作,直到有人清理临时目录。
所以,恢复... 将应用程序捆绑到一个文件中: - 将 hook-cefpython3.py(包中可用)粘贴到 Python27/envs/libs/site-package/Pyinstaller/hooks - 使用 --onefile 选项运行 Pyinstaller -告诉 cefpython 代码语言环境、资源和子进程在哪里(locale_dir_path、resource_dir_path、browser_subprocess_path)