I am attempting to execute a compiled ENVI IDL executable within Python 2.7, but have yet to figure out how to do it. My code looks like this:
import os, subprocess
filepath = "C:\\RVT_1.3_Win64.exe"
os.system(filepath)
I have tried most of the options from this post. However, I get a "Path\To\My\Python\RVT_1.3_Win64.ini doesn't exist. INI filename must be the same as EXE filename."
I have also tried running a small BAT file from Python with no results.