怎么使用子进程运行bash命令。在Windows上运行

本教程将介绍如何使用子进程运行bash命令。在Windows上运行的处理方法,这篇教程是从别的地方看到的,然后加了一些国外程序员的疑问与解答,希望能对你有所帮助,好了,下面开始学习吧。

怎么使用子进程运行bash命令。在Windows上运行 教程 第1张

问题描述

我想在python3.7.4中使用subprocess.run()运行外壳脚本和git-bash命令。当我在subprocess documentation page上运行该简单示例时,会发生以下情况:

import subprocess

subprocess.run(["ls", "-l"])

Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "C:pycharmprojectenvslibsubprocess.py", line 472, in run
 with Popen(*popenargs, **kwargs) as process:
  File "C:pycharmprojectenvslibsubprocess.py", line 775, in __init__
 restore_signals, start_new_session)
  File "C:pycharmprojectenvslibsubprocess.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/文件夹中的conda环境。我还安装了git-bash。

我也尝试设置环境,但得到相同的错误。

import os
import subprocess

my_env = os.environ.copy()
my_env["PATH"] = 'C:Program FilesGit;' + 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:pycharmprojectenvslibsubprocess.py", line 472, in run
 with Popen(*popenargs, **kwargs) as process:
  File "C:pycharmprojectenvslibsubprocess.py", line 775, in __init__
 restore_signals, start_new_session)
  File "C:npycharmprojectenvslibsubprocess.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 FilesGitgit-bash.exe', 'ls', '-l'], capture_output=True)

CompletedProcess(args=['C:Program FilesGitgit-bash.exe', 'ls', '-l'], returncode=0, stdout=b'', stderr=b'')


如subprocess documentation page中所示,如能以最佳方式使其正常工作,我将不胜感激。

推荐答案

我发现可以使用...Gitinash.exe而不是...Gitgit-bash.exe运行命令,如下所示:

import subprocess
subprocess.run(['C:Program FilesGitbinbash.exe', '-c','ls'], stdout=subprocess.PIPE)

CompletedProcess(args=['C:Program FilesGitbinbash.exe', '-c', 'ls'], returncode=0, stdout=b'README.md
__pycache__
conda_create.sh
envs
main.py
test.sh
zipped
')

好了关于怎么使用子进程运行bash命令。在Windows上运行的教程就到这里就结束了,希望趣模板源码网找到的这篇技术文章能帮助到大家,更多技术教程可以在站内搜索。