【发布时间】:2020-02-12 14:53:18
【问题描述】:
我想在 python 3.7.4 中使用 subprocess.run() 运行 shell 脚本和 git-bash 命令。当我在subprocess documentation page 上运行简单示例时,会发生这种情况:
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 发送命令。
我正在为 python 使用位于 project/envs/ 文件夹中的 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'')
如subprocess documentation page 所示,我将不胜感激任何有关使其工作的最佳方式的建议。
【问题讨论】:
-
如果你在windows cmd中运行
ls -l,它可以工作吗?如果您在 windows cmd 中运行C:\Program Files\Git\git-bash.exe ls -l,它可以工作吗?如果他们不这样做,这些命令也不会通过 Python 运行。尝试先在windows cmd中运行一些命令,成功,再通过Python运行。 -
在 cmd 中
ls -l返回'ls' is not recognized as an internal or external command, operable program or batch file,就像subprocess.call(["ls", "-l"], shell=True)一样。运行C:\Program Files\Git\git-bash.exe ls -l会打开一个 git bash 终端,然后它会快速关闭,而不会打印来自ls的结果,或者它可能只是立即关闭,所以我看不到打印。如果我更改为C:\Program Files\Git\git-bash.exe sleep 5,git 终端甚至不会保持打开状态 1 秒钟,这表明它没有运行命令。
标签: python python-3.x subprocess python-3.7