为了账号安全,请及时绑定邮箱和手机立即绑定

为什么会报错,BeautifulSoup下边有红线

from bs4 import BeautifulSoup


html_doc = """

<html><head><title>The Dormouse's story</title></head>

<body>

<p class="title"><b>The Dormouse's story</b></p>


<p class="story">Once upon a time there were three little sisters; and their names were

<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,

<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and

<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;

and they lived at the bottom of a well.</p>


<p class="story">...</p>

"""


soup = BeautifulSoup(html_doc,'html.parser',fron_encoding='utf-8')


print '获取所有的链接'

links = soup.find_all('a')

for link in links:

    print link.name,link['href'],link.get_text()


正在回答

6 回答

如果你的插件安装好了的话,估计你是自己写了一个bs4.py的文件,所以冲突了,你应该把你自己写的文件改个别的名字。

1 回复 有任何疑惑可以回复我~

楼主,我研究了一个晚上,from bs4 import BeautifulSoup报错No module named 'bs4'问题,琢磨了一个方法。


首先,我使用的IDE是PyCharm Python版本3.6,在file选项中选择settings选项点进去

http://img1.sycdn.imooc.com//5a6886dd000159e102870551.jpg

然后选择Project Interpreter

http://img1.sycdn.imooc.com//5a6887140001216b10410724.jpg

双击pip点进去

http://img1.sycdn.imooc.com//5a6887460001804410410724.jpg

搜索ps4点击   然后点击Install Package等会即可

应该有用,但是我也是才学没多久,方法也是在网上还是群里面看大佬们看出来的,希望对楼主有帮助。


0 回复 有任何疑惑可以回复我~

你看看你是不是把自己的某个包或者项目命名为bs4了

0 回复 有任何疑惑可以回复我~

你把from打成fron了

0 回复 有任何疑惑可以回复我~

Beautifulsoup没安装成功吧。检查一下Python的环境变量

0 回复 有任何疑惑可以回复我~

试试用管理员权限运行cmd

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

为什么会报错,BeautifulSoup下边有红线

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信