我正在尝试从 Python 到 Powershell 运行特定命令:
该命令在 Powershell 中按预期工作。Powershell中的命令如下:
gpt .\Method\gpt_scripts\s1_cal_deb.xml -t .\deburst\S1A_IW_SLC__1SDV_20180909T003147_20180909T003214_023614_0292B2_753E_Cal_deb_script.dim .\images\S1A_IW_SLC__1SDV_20180909T003147_20180909T003214_023614_0292B2_753E.zip
电源外壳输出:
os.getcwd()
'C:\\Users\\Ishack\\Documents\\Neta-Analytics\\Harvest Dates\\S1_SLC_Processing'
当前目录与 PowerShell 中的相同
我试过这样的事情:
import subprocess
process = 'gpt .\Method\gpt_scripts\s1_cal_deb.xml -t .\deburst\S1A_IW_SLC__1SDV_20180909T003147_20180909T003214_023614_0292B2_753E_Cal_deb_script.dim .\images\S1A_IW_SLC__1SDV_20180909T003147_20180909T003214_023614_0292B2_753E.zip'
process = subprocess.Popen(['powershell.exe', '-NoProfile', '-Command', '"&{' + process + '}"'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
process
输出:
<subprocess.Popen at 0x186bb202388>
但是当我按下回车时我没有得到任何响应,我希望 Python 像在 Powershell 中一样打印输出。我研究了其他类似的问题,但仍然没有解决问题。
谢谢,
伊沙克