from bs4 import BeautifulSoup ModuleNotFoundError: No module named 'bs4'
时间: 2024-03-25 21:34:59 浏览: 168
import sys import os import urllib from bs4 import BeautifulSoup
这个错误是因为你的代码中使用了BeautifulSoup库,但是你的环境中没有安装该库。要解决这个问题,你需要先安装BeautifulSoup库。
你可以使用以下命令来安装BeautifulSoup库:
```
pip install beautifulsoup4
```
安装完成后,再次运行你的代码就不会出现这个错误了。
阅读全文