使子进程 find git 在 Windows 上可执行
import subprocess
proc = subprocess.Popen('git status')
print 'result: ', proc.communicate()
我的系统路径中有 git,但是当我像这样运行子进程时,我得到:WindowsError: [Error 2] 系统找不到指定的文件
如何让子进程在系统路径中查找 git?
Windows XP 上的 Python 2.6。
import subprocess
proc = subprocess.Popen('git status')
print 'result: ', proc.communicate()
I have git in my system path, but when I run subprocess like this I get:WindowsError: [Error 2] The system cannot find the file specified
How can I get subprocess to find git in the system path?
Python 2.6 on Windows XP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您在此处看到的问题是 Windows API 函数 CreateProcess,由子进程在后台使用,不会自动解析
.exe
之外的其他可执行扩展名。在 Windows 上,“git”命令实际上安装为git.cmd
。因此,您应该修改示例以显式调用git.cmd
:shell==True
时git
起作用的原因是 Windows shell 自动- 将git
解析为git.cmd
。最后,自己解析 git.cmd:
The problem you see here is that the Windows API function CreateProcess, used by subprocess under the hood, doesn't auto-resolve other executable extensions than
.exe
. On Windows, the 'git' command is really installed asgit.cmd
. Therefore, you should modify your example to explicitly invokegit.cmd
:The reason
git
works whenshell==True
is that the Windows shell auto-resolvesgit
togit.cmd
.Eventually, resolve git.cmd yourself:
您的意思是
subprocess.Popen
的第一个参数采用类似shlex.split
的参数列表。或者:
不建议这样做,因为您要启动 shell,然后在 shell 中启动进程。
另外,您应该使用 stdout=subprocess.PIPE 来检索结果。
You mean
The first argument of
subprocess.Popen
takes ashlex.split
-like list of arguments.or:
This is not recommended, as you are launching a shell then launching a process in the shell.
Also, you should use
stdout=subprocess.PIPE
to retrieve the result.请注意,到 2020 年,Git 2.28(2020 年第 3 季度)将不再支持 Python 2.6 或更早版本。
请参阅 提交 45a87a8(2020 年 6 月 7 日),作者:刘丹顿 (
Denton-L
)。(由 Junio C Hamano --
gitster
-- 合并于 提交 6361eb7,2020 年 6 月 18 日)Note that in 2020, with With Git 2.28 (Q3 2020), Python 2.6 or older is no longer supported.
See commit 45a87a8 (07 Jun 2020) by Denton Liu (
Denton-L
).(Merged by Junio C Hamano --
gitster
-- in commit 6361eb7, 18 Jun 2020)我相信您需要将
env
传递给 Popen,例如:应该可以解决问题。
I believe you need to pass
env
in to Popen, something like:Should do the trick.