I have a Python script that needs to execute an external program, but for some reason fails.
If I have the following script:
import os; os.system(\"C
No need for sub-process, It can be simply achieved by
GitPath="C:\\Program Files\\Git\\git-bash.exe"# Application File Path in mycase its GITBASH os.startfile(GitPath)