在 python 脚本 运行 之后自动 运行 CMD::
Automatically running CMD after python script running::
我有一个 python 脚本,想在完成 python 脚本后打开 CMD 和 运行 另一个 exe 应用程序。
我一直在尝试使用 os 系统和子进程并阅读论坛,但是找不到如何在 cmd 中 运行 另一个 .exe 应用程序
我收到以下错误:
命令未被识别为可操作的内部或外部命令...
我附上脚本:
import numpy as np
import os
import subprocess
import sys
L_b = int(input("PLEASE ENTER LENGTH OF BEAM: "))
xf = L_b+3
print(xf)
p = subprocess.Popen(["cmd", "NAMEOFAPP.exe",shell = True)
#p = subprocess.call(["NAMEOFAPP"], shell = True)
#os.system("start /B start NAMEOFAPP.exe @cmd /k {NAMEOFAPP.exe}")
试试这个:
import os
os.chdir("C:/path/to/the/file") ## Do this if you're not currently in the directory that contains the .exe file
os.system("start NAMEOFAPP.exe") ## This command runs the app
我有一个 python 脚本,想在完成 python 脚本后打开 CMD 和 运行 另一个 exe 应用程序。 我一直在尝试使用 os 系统和子进程并阅读论坛,但是找不到如何在 cmd 中 运行 另一个 .exe 应用程序 我收到以下错误: 命令未被识别为可操作的内部或外部命令... 我附上脚本:
import numpy as np
import os
import subprocess
import sys
L_b = int(input("PLEASE ENTER LENGTH OF BEAM: "))
xf = L_b+3
print(xf)
p = subprocess.Popen(["cmd", "NAMEOFAPP.exe",shell = True)
#p = subprocess.call(["NAMEOFAPP"], shell = True)
#os.system("start /B start NAMEOFAPP.exe @cmd /k {NAMEOFAPP.exe}")
试试这个:
import os
os.chdir("C:/path/to/the/file") ## Do this if you're not currently in the directory that contains the .exe file
os.system("start NAMEOFAPP.exe") ## This command runs the app