Python3.5下的bs4安装错误

2017-04-07  本文已影响173人  everfight
安装图解.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

上一篇 下一篇

猜你喜欢

热点阅读