获取错误 - AttributeError:'module'对象在运行subprocess.run时没有属性'run'([“ls”,“ - l”])
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取错误 - AttributeError:'module'对象在运行subprocess.run时没有属性'run'([“ls”,“ - l”])相关的知识,希望对你有一定的参考价值。
我在AIX 6.1上运行并使用Python 2.7。想要执行以下行但收到错误。
subprocess.run(["ls", "-l"])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'run'
答案
subprocess.run()
function仅存在于Python 3.5及更高版本中。
然而,向后移动很容易:
def run(*popenargs, input=None, check=False, **kwargs):
if input is not None:
if 'stdin' in kwargs:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = subprocess.PIPE
process = subprocess.Popen(*popenargs, **kwargs)
try:
stdout, stderr = process.communicate(input)
except:
process.kill()
process.wait()
raise
retcode = process.poll()
if check and retcode:
raise subprocess.CalledProcessError(
retcode, process.args, output=stdout, stderr=stderr)
return retcode, stdout, stderr
不支持超时,也没有完成流程信息的自定义类,因此我只返回retcode
,stdout
和stderr
信息。否则它与原始版本完全相同。
以上是关于获取错误 - AttributeError:'module'对象在运行subprocess.run时没有属性'run'([“ls”,“ - l”])的主要内容,如果未能解决你的问题,请参考以下文章
获取 AttributeError 以尝试访问预期的 cookie
获取 AttributeError:“OneHotEncoder”对象没有属性“pyspark 中的 _jdf”
AttributeError:模块'tensorflow'在更新后没有属性'python'错误