《PyInstaller打包实战指南》第二十二节 单文件模式打包Playwright
Posted la_vie_est_belle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《PyInstaller打包实战指南》第二十二节 单文件模式打包Playwright相关的知识,希望对你有一定的参考价值。
第二十二节 单文件模式打包Playwright
打包时解决掉的问题:
- ImportError: DLL load failed while importing _greenlet: 动态链接库(DLL)初始化例程失败。
- Executable doesn\'t exist at C:\\Users\\user\\Desktop\\la_vie\\dist\\belle\\playwright\\driver\\package\\.local-browsers\\chromium-1033\\chrome-win\\chrome.exe
打包示例源码下载:
请看文章末尾
版本信息:
playwright==1.28.0
pyinstaller==5.3
打包系统:
Windows 10
打包前我们要先运行下代码,确保没有报错:
# belle.py
from playwright.sync_api import sync_playwright
with sync_playwright() as p:
browser = p.chromium.launch(headless=False)
page = browser.new_page()
page.goto("https://pyqt5.blog.csdn.net/")
page.screenshot(path="test.png")
browser.close()
运行正常ÿ
以上是关于《PyInstaller打包实战指南》第二十二节 单文件模式打包Playwright的主要内容,如果未能解决你的问题,请参考以下文章
《PyInstaller打包实战指南》第二十三节 单文件模式打包OpenCV-Python