我正在编写一个需要在 Linux 和 Windows 上运行并使用路径中存在的可执行文件(带参数)的程序。(假定)
目前,我在使用 Subprocess.Call 和 Subprocess.Popen 在 Windows 中运行可执行文件时遇到问题。
对于这样的代码,在 Windows 8 中
def makeBlastDB(inFile, inputType, dbType, title, outDir):
strProg = 'makeblastdb'
strInput = '-in ' + inFile
strInputType = '-input_type ' + inputType
strDBType = '-dbtype ' + dbType
strTitle = '-title ' + title
strOut = '-out ' + os.path.join(os.sep, outDir, title)
cmd = [strProg, strInput, strInputType, strDBType, strTitle, strOut]
result = Popen(cmd, shell=True)
我在控制台中收到错误消息
'makeblastdb' is not recognized as an internal or external command,
operable program or batch file.
即使我可以使用 cmd.exe 运行相同的命令,我也会得到与 shell=False 相同的响应。
假设可执行文件位于 PATH 环境变量中,关于如何运行命令的任何想法?谢谢