Python的beautifulSoup 安装和中文文档网址

来源:互联网 发布:linux ssh 加端口号 编辑:程序博客网 时间:2024/06/14 13:02

Python的beautifulSoup 教程网址:https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/index.html


一.问题描述

用python3写了个网页爬虫,使用到BeautifulSoup4模块,结果显示

File “./title.py”, line 7, in 
from bs4 import BeautifulSoup 
ImportError: No module named ‘bs4’

我使用下面的命令安装的啊,但是任然出现上面的问题

pip3 install beautifulsoup4

二.解决办法

For python2.x:

sudo pip install BeautifulSoup4
  • 1
  • 2

For python3:

sudo apt-get install python3-bs4
  • 1
  • 2

三.中文参考文档

https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/


原创粉丝点击