Ошибки Cefpython cx_freeze - PullRequest
       40

Ошибки Cefpython cx_freeze

0 голосов
/ 30 сентября 2018

После долгих попыток я наконец нашел способ скомпилировать мой код Cefpython:

import json
import urllib.request
from cefpython3 import cefpython as cef
import platform
import sys

url = "https://google.com/"

def main():
    check_versions()
    sys.excepthook = cef.ExceptHook
    cef.Initialize()
    cef.CreateBrowserSync(url=url,
                          window_title="browser")
    cef.MessageLoop()
    cef.Shutdown()

def check_versions():
    ver = cef.GetVersion()
    print("[hello_world.py] CEF Python {ver}".format(ver=ver["version"]))
    print("[hello_world.py] Chromium {ver}".format(ver=ver["chrome_version"]))
    print("[hello_world.py] CEF {ver}".format(ver=ver["cef_version"]))
    print("[hello_world.py] Python {ver} {arch}".format(
           ver=platform.python_version(),
           arch=platform.architecture()[0]))
    assert cef.__version__ >= "57.0", "CEF Python v57.0+ required to run this"


if __name__ == '__main__':
    main()

(существуют jason и urllib.request, чтобы компиляторы (py2exe pyinstaller ect) не выдавали ошибок)

Использование cx_Freeze, но когда я запускаю exe, cx_freeze дает мне следующее:

[0930/071436.905:ERROR:main_delegate.cc(710)] Could not load locale pak for en-US
[0930/071436.906:ERROR:main_delegate.cc(717)] Could not load cef.pak
[0930/071436.906:ERROR:main_delegate.cc(734)] Could not load cef_100_percent.pak
[0930/071436.906:ERROR:main_delegate.cc(743)] Could not load cef_200_percent.pak
[0930/071436.907:ERROR:main_delegate.cc(753)] Could not load cef_extensions.pak
[0930/071436.926:ERROR:content_client.cc(272)] No data resource available for id 101

(из журнала debug.log)

Я думаю, что это вещь cefpython, но я незнаю.

...