使用cepython写了1个简单demo,其代码如下:from cefpython3 import cefpython as cefdef main():
settings = { "single_process": False
}
sys.excepthook = cef.ExceptHook
cef.Initialize(settings=settings)
brower = cef.CreateBrowserSync(url="https://www.dida365.com/signin") #brower.ShowDevTools()
cef.MessageLoop()
cef.Shutdown()使用的cefpython版本是57.0,pyinstaller的版本是3.2.1。然后打包成exe后运行直接就是白屏,页面都不加载。有什么方法可以让页面加载出来
添加回答
举报
0/150
提交
取消