from bs4 import BeautifulSoup 报错ModuleNotFoundError: No module named 'bs4'
时间: 2023-06-21 07:09:52 浏览: 194
import reimport requestsfrom bs4 import BeautifulSoupimport t
这个错误提示是因为你的Python环境没有安装名为BeautifulSoup4的模块。
你可以在终端或命令提示符中运行以下命令来安装它:
```
pip install beautifulsoup4
```
如果你使用的是Python3,可能需要使用pip3命令来安装,例如:
```
pip3 install beautifulsoup4
```
安装完成后,你就可以在你的代码中导入并使用BeautifulSoup了。
阅读全文