如何通过Python运行msys中的程序?

发布于 2024-12-07 04:39:51 字数 339 浏览 1 评论 0原文

我有一个简短的 python 脚本,它最终将编辑输入文件,在该输入文件上运行可执行文件并读取可执行文件的输出。问题是,我已经通过 msys 编译了可执行文件,并且似乎只能从 msys 窗口运行它。我想知道最简单的方法是否是在 Python 中使用 os.command 来运行 msys 并通过管道输入命令,或者通过 msys 运行脚本,但我还没有找到一种方法来做到这一点。

以前有人尝试过这个吗?如何将命令传送到 msys 中?还是有一种我没有想到的更聪明的方法来做到这一点?

提前致谢!

编辑:刚刚意识到这些信息可能有帮助,哈哈。 。 。 。我正在运行 Windows、msys 1.0 和 Python 2.7

I've got a short python script that will eventually edit an input file, run an executable on that input file and read the output from the executable. The problem is, I've compiled the executable through msys, and can only seem to run it from the msys window. I'm wondering if the easiest way to do this is to somehow use os.command in Python to run msys and pipe a command in, or run a script through msys, but I haven't found a way to do this.

Has anyone tried this before? How would you pipe a command into msys? Or is there a smarter way to do this that I haven't thought of?

Thanks in advance!

EDIT: Just realized that this information might help, haha . . . . I'm running Windows, msys 1.0 and Python 2.7

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

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

发布评论

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

评论(1

堇年纸鸢 2024-12-14 04:39:51
  1. 查找 msys 路径 libgcc_s_dw2-1.dll 所在的位置。
  2. 在 MSYS 中找到包含该路径的环境变量。
  3. 将该环境变量添加到 Windows。
  1. Find where in the msys path libgcc_s_dw2-1.dll is.
  2. Find the environmental variable in MSYS that has that path in it.
  3. Add that environmental variable to Windows.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文