ModuleNotFoundError:没有名为bs4的模块

时间:2020-07-08 08:26:58

标签: python beautifulsoup

我已经按照以下指南安装了Jupyter:https://medium.com/@blessedmarcel1/how-to-install-jupyter-notebook-on-mac-using-homebrew-528c39fd530f

我安装了python 3.7.5版本,然后按照命令

pip3 install beautifulsoup4

但是在我写完笔记本后继续出现错误

from bs4 import BeautifulSoup

ModuleNotFoundError:没有名为“ bs4”的模块

1 个答案:

答案 0 :(得分:1)

您安装了beautifulsoup4而不是bs4

按照以下代码获取所需信息:

pip3 install bs4 # for Py3

也许pip需要升级才能与Python 3版本兼容:

sudo apt install python3-pip

然后尝试运行第一个命令。