AttributeError: 'module' object has no attribute '_base' 可行解决办法

来源:互联网 发布:上海数据有限公司 编辑:程序博客网 时间:2024/06/05 22:44

报错误:
class TreeBuilderForHtml5lib(html5lib.treebuilders._base.TreeBuilder):
AttributeError: ‘module’ object has no attribute ‘_base’

解决办法:

要升级html5lib库至1.0b8 可以解决问题.

pip install --upgrade html5lib==1.0b8
阅读全文
1 0