pyinstaller一个文件--no-console不起作用“致命错误”

pyinstaller一个文件--no-console不起作用“致命错误”,第1张

pyinstaller一个文件--no-console不起作用“致命错误”

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

C:Python35Libsite-packagesseleniumwebdrivercommonservice.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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5028296.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存