2019-01-20-Beautifulsoup 报错 AttributeError: 'module' object has no attribute '_base'的问题

 from bs4 import BeautifulSoup报错:AttributeError: 'module' object has no attribute '_base'

      一种说法是要升级html5lib版本问题,默认安装的是最新版本,降级版本依然无效

      一是修改base.py文件为:_base.py就行了,很遗憾引发其他错误

       解决方法:打开了报错的模块_html5lib.py尝试着将里面的treebuilders._base全部修改为:treebuilders.base

       _html5lib.py

你可能感兴趣的:(2019-01-20-Beautifulsoup 报错 AttributeError: 'module' object has no attribute '_base'的问题)