How to run bash commands using subprocess.run on windows(如何使用子进程运行bash命令。在Windows上运行)
本文介绍了如何使用子进程运行bash命令。在Windows上运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在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 Files\Git\git-bash.exe', 'ls', '-l'], returncode=0, stdout=b'', stderr=b'')
如subprocess documentation page中所示,如能以最佳方式使其正常工作,我将不胜感激。
推荐答案
我发现可以使用...Gitinash.exe而不是...Gitgit-bash.exe运行命令,如下所示:
import subprocess
subprocess.run(['C:Program FilesGit\bin\bash.exe', '-c','ls'], stdout=subprocess.PIPE)
CompletedProcess(args=['C:\Program Files\Git\bin\bash.exe', '-c', 'ls'], returncode=0, stdout=b'README.md
__pycache__
conda_create.sh
envs
main.py
test.sh
zipped
')
这篇关于如何使用子进程运行bash命令。在Windows上运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何使用子进程运行bash命令。在Windows上运行
基础教程推荐
猜你喜欢
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 包装空间模型 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 求两个直方图的卷积 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
