python中使用bs4的BeautifulSoup库的时候提示ImportError: cannot import name ‘BeautifulSoup‘ from ‘bs4‘错误
今天写python爬虫的时候,使用bs4的BeautifulSoup库的时候提示ImportError: cannot import name 'BeautifulSoup' from 'bs4'错误。
·
今天写python爬虫的时候,使用bs4的BeautifulSoup库的时候提示ImportError: cannot import name 'BeautifulSoup' from 'bs4'错误。
具体错误:
Traceback (most recent call last):
File "D:\Python\LianXi\bs4.py", line 7, in <module>
from bs4 import BeautifulSoup
File "D:\Python\LianXi\bs4.py", line 7, in <module>
from bs4 import BeautifulSoup
ImportError: cannot import name 'BeautifulSoup' from 'bs4' (D:\Python\LianXi\bs4.py)
Traceback (most recent call last):
File "D:\Python\LianXi\bs4.py", line 7, in <module>
from bs4 import BeautifulSoup
File "D:\Python\LianXi\bs4.py", line 7, in <module>
from bs4 import BeautifulSoup
ImportError: cannot import name 'BeautifulSoup' from 'bs4' (D:\Python\LianXi\bs4.py)
产生错误的原因:
因为自己使用bs4库,所以就简单的给爬虫起了一个名字叫bs4.py,这个名字与bs4可中名字重名了,然后运行爬虫的时候会加载自己新建的那个文件,一次会导致导入失败。
解决办法:
给爬虫文件重新取一个名字就好啦,使用bs4库的时候,自己新建的文件不能使用bs4.py这个名字!
更多推荐
已为社区贡献1条内容
所有评论(0)