经过一番搜索,我找到了完整的解决方案:首先转到-
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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)