美文网首页
Python3.5下的bs4安装错误

Python3.5下的bs4安装错误

作者: everfight | 来源:发表于2017-04-07 18:11 被阅读173次
安装图解.png

安装bs4 pip install bs4,运行程序后发现已经安装了bs4。
python打开交互式窗口,导入BeautifulSoup发生错误:ImportError: cannot import name 'HTMLParseError'

经查询后得知:BeautifulSoup在4.4.0以前的版本不支持Python3.5,所以我们需要把我们的BeautifulSoup升级到4.4.0版本以上就可以使用了.

升级方法:
pip install --upgrade beautifulsoup4

相关文章

网友评论

      本文标题:Python3.5下的bs4安装错误

      本文链接:https://www.haomeiwen.com/subject/bxqfattx.html