python 安装 beautifulsoup
时间: 2023-10-14 14:24:10 浏览: 218
beautifulsoup for python
要安装 BeautifulSoup,可以使用 pip 命令:
```bash
pip install beautifulsoup4
```
如果你使用的是 Python 3,可能需要使用 pip3 命令:
```bash
pip3 install beautifulsoup4
```
安装完成后,你可以在 Python 中使用 BeautifulSoup。例如:
```python
from bs4 import BeautifulSoup
```
这个例子导入了 BeautifulSoup 模块,你可以使用其中的类和方法来处理 HTML 或 XML 文档。
阅读全文