1.执行hrun -V报错:ImportError: cannot import name 'Iterable' from 'collections'
将
from collections import Iterable
修改成
from collections.abc import Iterable
2.执行hrun -V报错:ImportError: cannot import name 'soft_unicode' from 'markupsafe'
卸载markupsafe,重新安装markupsafe==2.0.1版本
标签:ImportError,httprunner2.5,collections,markupsafe,报错,Iterable,import,python3 From: https://www.cnblogs.com/yrxns/p/17790086.html