码迷,mamicode.com
首页 > 编程语言 > 详细

安装Python的easy_install工具和BeautifulSoup模块

时间:2015-01-22 18:04:45      阅读:629      评论:0      收藏:0      [点我收藏+]

标签:python   easy_install   beautifulsoup4   爬虫   


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 python 
1.2 Linux系统可以执行以下命令:
wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python 
1.3 Window系统:

Window系统可以直接下载ez_setup.py文件并运行


2、BeautifulSoup4


BeautifulSoup4是一个Python解析html或者xml的工具模块,使用这个模块做Python爬虫也是很不错的。

安装方法:

2.1 Debain或Ubuntu可以通过系统软件包管理安装

$sudo apt-get install Python-bs4 
2.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模块

标签:python   easy_install   beautifulsoup4   爬虫   

原文地址:http://blog.csdn.net/qinxiandiqi/article/details/43022253

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!