首页 > 代码库 > 安装Python的easy_install工具和BeautifulSoup模块
安装Python的easy_install工具和BeautifulSoup模块
1、esay_install
easy_install是Python的发行包管理工具,类似于linux的apt-get或者yum包管理工具,使用easy_install可以很方便的获取第三方的Python发行模块。
安装方法:
1.1 Mac OS X 系统可以在终端执行以下命令:
curl https://bootstrap.pypa.io/ez_setup.py -o - | sudo python1.2 Linux系统可以执行以下命令:
wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python1.3 Window系统:
Window系统可以直接下载ez_setup.py文件并运行
2、BeautifulSoup4
BeautifulSoup4是一个Python解析html或者xml的工具模块,使用这个模块做Python爬虫也是很不错的。
安装方法:
2.1 Debain或Ubuntu可以通过系统软件包管理安装
$sudo apt-get install Python-bs42.2 使用easy_install或者pip安装:
$ sudo easy_install beautifulsoup4 或 $ sudo pip install beautifulsoup4
另外附上BeautifulSoup4的中文文档http://www.crummy.com/software/BeautifulSoup/bs4/doc/index.zh.html
安装Python的easy_install工具和BeautifulSoup模块
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。