蟒蛇 + windows:运行exe,就好像它与当前进程无关一样
我知道我可以使用 subprocess.Popen 来运行可执行文件,并可能将标准输入和标准输出重定向到文件/使用管道到我的进程。然而,有没有一种方法可以运行可执行文件,使生成的进程与当前的 Python 进程无关?意思是,我想以与双击 .exe 相同的方式启动一个进程,或者在“开始”->“运行”中输入其名称...
I know I can use subprocess.Popen
to run an executable, and potentially redirect stdin and stdout to files / using pipes to my process. Is there a way to run an executable such that the spawned process has no relation to the current Python process, however? Meaning, I want to start a process in the same way as if I would double-click on the .exe, or type in its name into Start->Run...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Windows 上,请参阅 os.startfile()。
On Windows, see os.startfile().