该问题是因为python version >=3.5使用run方法
对于python2版本,要修改为subprocess.call()方法
AttributeError: ‘module‘ object has no attribute ‘run‘
最新推荐文章于 2025-01-19 06:53:03 发布
该问题是因为python version >=3.5使用run方法
对于python2版本,要修改为subprocess.call()方法