gpt4 book ai didi

python - 'BeautifulSoup' 没有属性 '__version__'

转载 作者:太空宇宙 更新时间:2023-11-03 12:45:45 24 4
gpt4 key购买 nike

在使用 jupyter notebook 时使用代码

from bs4 import BeautifulSoup
print ("BeautifulSoup version:%6.6s" %BeautifulSoup.__version__)

我遇到了这个错误

AttributeError: type object 'BeautifulSoup' has no attribute 'version'

我使用 python setup.py install 安装了 bs4。它在安装中显示“c:\users...\anaconda3\lib\site-packages\beautifulsoup4-4.4.1-py3.5.egg”

最佳答案

对于 BeautifulSoup 版本 4,你应该这样做:

>>> import bs4
>>> print ("BeautifulSoup version:%6.6s" % bs4.__version__)
BeautifulSoup version: 4.4.1

关于python - 'BeautifulSoup' 没有属性 '__version__',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36276521/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com