gpt4 book ai didi

python - pyinstaller 一个文件 --no-console 不起作用 "Fatal Error"

转载 作者:太空宇宙 更新时间:2023-11-04 02:40:40 25 4
gpt4 key购买 nike

我用 pyinstaller 尝试了 2 个选项,一个有控制台,一个没有。

我正在使用 Windows 10、Python 3.5.4、Windows Chrome Driver 2.33 和 Selnium 3.6.0 以及 Pyinstaller 3.3。

一个没有控制台的失败:

这是 Test.py

的代码
#!python3
from selenium import webdriver

# Chrome Proxy options and disable the Yellow Bar about Chrome being controlled by Automated Software.
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-infobars")
chrome_options.add_argument("--disable-logging")
chrome_options.add_argument("--disable-notifications")
chrome_options.add_argument("--disable-default-apps")
chrome_options.add_argument("--disable-extensions")


# load google.com with the proxy settings and a logging path to a file
driver = webdriver.Chrome(r"D:\Selenium\chromedriver_win32\chromedriver.exe", chrome_options=chrome_options)

# maximise window
driver.maximize_window()

driver.get("https://www.google.com/mail")

以下是具有完全相同代码的 pyinstaller 命令:

- 使用控制台窗口也可以工作:

pyinstaller -F -i favicon.ico Test.py

- 没有控制台窗口失败

pyinstaller -F --noconsole -i favicon.ico Test.py

我收到这个错误:

*"Failed to execute script error"*

我不知道为什么。

谢谢


感谢您的回复我查看了:

C:\Users\testuser\AppData\Local\Programs\Python\Python35\Lib\site-packages\selenium\webdriver\chrome\service.py

这里没有子进程。

我也检查过:

C:\Users\testuer\AppData\Local\Programs\Python\Python35\Lib\site-packages\selenium\webdriver\common\service.py

在第 70 行,我添加了 stdin=self.log_file 的条目,因为它丢失了

 try:
cmd = [self.path]
cmd.extend(self.command_line_args())
self.process = subprocess.Popen(cmd, env=self.env,
close_fds=platform.system() != 'Windows',
stdin=self.log_file, stdout=self.log_file, stderr=self.log_file)

使用 pyinstaller 重新创建:

pyinstaller -F --noconsole  -i favicon.ico Test.py

这创建了 exe,但是现在出现了控制台窗口....

Python program with selenium(webdriver) Don't Work as single and noconsole exe file (pyinstaller)

最佳答案

经过一番搜索,我找到了完整的解决方案:首先去-

C:\Python35\Lib\site-packages\selenium\webdriver\common\service.py

改变:

self.process = subprocess.Popen(cmd, env=self.env,
close_fds=platform.system() != 'Windows',
stdout=self.log_file, stderr=self.log_file)

收件人:

self.process = subprocess.Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE, shell=False, creationflags=0x08000000)

现在只需像这样构建您的 app.py:

pyinstaller --noconsole --onefile  --noupx   Yourfile.py

关于python - pyinstaller 一个文件 --no-console 不起作用 "Fatal Error",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46639052/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com