Error before make the python executable with auto-py-yo-exe NameError: name '__version__' is not definied [3644] Failed to execute the script

Error before make the python executable with auto-py-yo-exe NameError: name '__version__' is not definied [3644] Failed to execute the script

我试图创建一个带有自动 py 到 exe 的 exe,但是当我试图执行它时它抛出了一个错误。我尝试以管理员身份执行它,但没有任何区别。

问题是由 pyppeteer 包引起的。转到软件包的 __init__ 文件并将 version 替换为您当前使用的版本。

要查找 pyppeteer\__init__.py 的位置,您可以键入 pip show pyppeteer,该目录将列在 Location.

要找出您当前使用的版本,请使用 pip show pyppeteer。在我的例子中,它会 return “0.2.5”,所以我会设置 __version__ = "0.2.5"。尝试再次使应用程序成为可执行文件,它应该可以正常工作。