beautifulsoup安装流程

1.确定python的版本和beautifulsoup版本匹配,我用的python3.6.2+beautifulsoup4-4.6.0

2.官网下载https://pypi.python.org/pypi/beautifulsoup4,下载源码beautifulsoup4-4.6.0.tar.gz (md5)

3.将下载完成之后的源码解压缩,假设放到D:/python下。

4.运行cmd,切换到D:/python/beautifulsoup4-4.6.0/目录下(根据自己解压缩后的目录和下载的版本号修改),
cd  D:/python//beautifulsoup4-4.6.0
5.运行命令:
setup.py build
setup.py install
5.在IDE下from bs4 import BeautifulSoup,没有报错说明安装成功。
6.版本升级到4,引入包要用
import bs4
from bs4 import BeautifulSoup

你可能感兴趣的:(Python,python)