我想在 python 3.7.4 中使用 subprocess.run()
运行 shell 脚本和 git-bash 命令。当我在 子流程文档页面 上运行简单示例时,会发生这种情况:
import subprocess
subprocess.run(["ls", "-l"])
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "C:\pycharm\project\envs\lib\subprocess.py", line 472, in run
with Popen(*popenargs, **kwargs) as process:
File "C:\pycharm\project\envs\lib\subprocess.py", line 775, in __init__
restore_signals, start_new_session)
File "C:\pycharm\project\envs\lib\subprocess.py", line 1178, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified
# it also fails with shell=True
subprocess.call(["ls", "-l"], shell=True)
'ls' is not recognized as an internal or external command,
operable program or batch file.
1
来自 shell=True
的消息是来自 windows cmd 的消息,这表明子进程没有向 git-bash 发送命令。
我正在使用位于 project/envs/
python 文件夹中的 conda 环境。我还安装了 git-bash。
我也尝试设置环境并得到同样的错误。
import os
import subprocess
my_env = os.environ.copy()
my_env["PATH"] = 'C:\Program Files\Git\;' + my_env["PATH"]
subprocess.run(['git-bash.exe', 'ls', '-l'], env=my_env)
Traceback (most recent call last):
File "<input>", line 3, in <module>
File "C:\pycharm\project\envs\lib\subprocess.py", line 472, in run
with Popen(*popenargs, **kwargs) as process:
File "C:\pycharm\project\envs\lib\subprocess.py", line 775, in __init__
restore_signals, start_new_session)
File "C:n\pycharm\project\envs\lib\subprocess.py", line 1178, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified
我可以通过指向 git-bash.exe 来运行它,但它返回一个空字符串而不是我目录中的文件
import subprocess
subprocess.run(['C:\Program Files\Git\git-bash.exe', 'ls', '-l'], capture_output=True)
CompletedProcess(args=['C:\\Program Files\\Git\\git-bash.exe', 'ls', '-l'], returncode=0, stdout=b'', stderr=b'')
如 子流程文档页面 所示,我将不胜感激有关实现此功能的最佳方法的任何建议。
原文由 Tony B 发布,翻译遵循 CC BY-SA 4.0 许可协议
我发现我可以使用
...Git\bin\bash.exe
而不是...\Git\git-bash.exe
运行命令,如下所示: