Run the white screen after the cefpython is packaged

write a simple demo, using cepython with the following code:

from cefpython3 import cefpython as cef

def main():
    settings = {
        "single_process": False
    }
    sys.excepthook = cef.ExceptHook
    cef.Initialize(settings=settings)
    brower = cef.CreateBrowserSync(url="https://www.dida365.com/signin")
    -sharpbrower.ShowDevTools()
    cef.MessageLoop()
    cef.Shutdown()

the version of cefpython used is 57.0 and the version of pyinstaller is 3.2.1. Then packaged into exe and run directly is a white screen, the page is not loaded. Is there any way to get the page loaded

Mar.28,2021

missing subprocess.exe file

Menu