numpy.distutils.exec_command.exec_command #

distutils.exec_命令。exec_command ( command , execute_in = '' , use_shell = None , use_tee = None , _with_python = 1 , ** env ) [来源] #

返回执行命令的(状态,输出)。

自版本 1.17 起已弃用:使用 subprocess.Popen 代替

参数
命令str

可执行文件和参数的串联字符串。

在str中执行

运行命令之前和之后。cd execute_incd -

use_shell {bool, None},可选

如果为 True,则执行.默认无(真)sh -c command

use_tee {bool, None},可选

如果 True 使用 T 恤。默认无(真)

返回
资源字符串

stdout 和 stderr 消息。

笔记

在 NT、DOS 系统上,返回的状态对于外部命令是正确的。通配符不适用于非 posix 系统或 use_shell=0 时。