I just started working on Python and have been trying to run an outside executable from Python.
I have an executable for a program written in Fortran. Let’s say the name for the executable is flow.exe
, and my executable is located in C:\Documents and Settings\flow_model
. I tried both os.system
and popen
commands, but so far, I couldn't make it work. The following code seems like it opens the command window, but it wouldn't execute the model.
# Import system modules
import sys, string, os, arcgisscripting
os.system("C:/Documents and Settings/flow_model/flow.exe")
How can I fix this?
C:\windows\system32\calc.exe
or Chrome (which is in c:\program files..). B) If you tried running it from the cmd console (or an IDE's terminal eg VS Code's terminal)C:\blah>python blah.py<ENTER>
you'd see it's pretty clear what is happening.'C:/Documents' is not recognized as an internal or external command, operable program or batch file.
– Authorized