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

来源:互联网 发布:金马甲网络交易平台 编辑:程序博客网 时间:2024/05/16 14:38

今天 variety 出错,如下:    

class TreeBuilderForHtml5lib(html5lib.treebuilders._base.TreeBuilder):
AttributeError: 'module' object has no attribute '_base'

解决办法:

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

pip install --upgrade html5lib==1.0b8

阅读全文
0 0