Popen 给出“文件未找到”错误(Windows/Python)

发布于 2024-09-13 19:14:34 字数 138 浏览 4 评论 0原文

我试图通过 subprocess.Popen 运行控制台命令,每当我运行它时,即使运行 echo 命令,我也会收到 Windows“文件未找到”错误。 我还在使用 thread 模块创建的线程中使用 Popen。这是问题所在吗?

I'm trying to run console commands via subprocess.Popen, and whenever I run it I get the windows "File not found" error, even when running the echo command.
I am also using Popen inside a thread made with the thread module. Is that the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风渺 2024-09-20 19:14:35

使用
D:/Program Files/Steam,而不是
D:\Program Files\Steam\steamapps\terabytes\sourcesdk\bin\orangebox\bin\vbsp.exe /steamapps/terabytest/sourcesdk/bin/orangebox/bin/vbsp.exe

这消除了引号内反斜杠的任何复杂性。

Instead of
D:\Program Files\Steam\steamapps\terabytest\sourcesdk\bin\orangebox\bin\vbsp.exe, use
D:/Program Files/Steam/steamapps/terabytest/sourcesdk/bin/orangebox/bin/vbsp.exe

This eliminates any complications with backslashes inside quotes.

小镇女孩 2024-09-20 19:14:35

echo 不是可执行文件,它是 cmd.exe 内的内部命令。如果您想将 Popen 与内部命令一起使用,请添加关键字参数 shell=True

echo is not an executable, it's an internal command inside cmd.exe. If you want to use Popen with internal commands, add a keyword parameter shell=True

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文