Python3.5下的bs4安装错误

Python3.5下的bs4安装错误_第1张图片
安装图解.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安装错误)