`
endual
  • 浏览: 3565458 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

python 安装easy_install工具(转)

 
阅读更多


安装easy_install工具

使用ez_setup.py脚本方便安装:

wget -q http://peak.telecommunity.com/dist/ez_setup.py
python ez_setup.py


安装完后,最好确保easy_install所在目录已经被加到PATH环境变量里:

Windows: C:\Python25\Scripts
Linux: 
/usr/local/bin


安装 Mechanize 和 BeautifulSoup

安装Mechanize 和 BeautifulSoup,可以执行如下命令,系统会自动在pypi网站列表里查找相关软件包:

easy_install Mechanize
easy_install BeatifulSoup


BeautifulSoup中文乱码

简单的一段代码:


from BeautifulSoup import BeautifulSoup 

page 
= "<a><s>中文</s></a>"
soup 
= BeautifulSoup(page, fromEncoding="utf-8")
print soup
= open("ss.txt""w+")
f.write(str(soup))
f.close()

打印出来的乱码,写入文件却是正常的。查了一下,这个跟shell的编码有关,windows的一般是gbk,所以utf-8出乱码很正常,如果要正常打印,只要把字符串转换成指定编码方式就可以。
分享到:
评论

相关推荐

    python 安装easy_install和pip

    python 安装easy_install和pip

    python easy_install

    使用ActivePython的安装,自带了easy_install

    easy_install.exe review board

    1. **Easy Install**:Easy Install是一个命令行工具,用于查找、下载、构建、测试和安装Python软件包。它通过读取`setup.py`文件来理解软件包的需求,并能处理依赖关系。 2. **ez_install.py**:这是启动Easy ...

    python easy_install 安装包和安装教程

    Python Easy_Install是Python开发中的一个实用工具,用于自动化安装Python第三方库,它极大地简化了开发者获取和安装软件包的过程。在Python生态系统中,Easy_Install作为setuptools的一部分,允许用户通过简单的...

    python easy_install 和 pip

    在Python的包管理领域,`easy_install`和`pip`扮演了重要角色,它们都是用于安装和管理这些库的工具。本文将深入探讨这两个工具及其在Python开发中的应用。 `easy_install`是Python的Setuptools模块的一部分,它...

    setuptools-14.1.1 python easy_install安装包

    总结起来,`setuptools`和`easy_install`是Python早期的包管理和安装工具,`setuptools`通过`setup.py`提供项目构建和打包功能,而`easy_install`则简化了从PyPI获取和安装包的过程。虽然现在`pip`更为流行,但在...

    python安装器easy_install

    附带说明: cd进入papy-setuptools文件夹,执行python setup.py install将安setuptools工具集。会发现在python安装目录下有个script文件夹,里面有easy_install工具。

    带有easy_install功能的python的 Scripts文件夹

    `easy_install`是Python早期用于安装Python包的一个工具,它属于`setuptools`库的一部分。在Python的安装路径下,通常有一个名为`Scripts`的文件夹,这个文件夹在Windows系统中扮演着类似Unix/Linux系统中`bin`目录...

    python easy install

    Python Easy Install,通常简称为`easy_install`,是Python生态系统中的一个工具,主要用于安装和管理Python软件包。在Python的世界里,包管理器是至关重要的,它们帮助开发者方便地安装、升级和卸载各种库和模块。`...

    easy_install

    标题 "easy_install" 提到的是Python的一个包管理工具,它用于安装Python的第三方库,特别是来自Python的包索引PyPI(Python Package Index)的资源。easy_install是Python标准库中的distutils-setuptools模块的一...

    Python中安装easy_install的方法

    easy_install是一个python的扩展包,主要是用来简化python安装第三方安装包,在安装了easy_install之后,安装python第三方安装包就只需要在命令行中输入:easy_install packagename,然后程序会自动搜索相应版本的...

    linux下安装easy_install的方法

    如果想使用easy_install工具,可能需要先安装setuptools,不过更酷的方法是使用ez_setup.py脚本:复制代码 代码如下:wget -q http://peak.telecommunity.com/dist/ez_setup.pypython ez_setup.py 安装完后,最好确保...

    easy_install-2.7

    Python2.7 pip的easy_install-2.7下载 Python2.7 pip的easy_install-2.7下载

    安装easy_install的py文件

    python安装工具包easy_install,直接python ez-setup.py即可完成easy_install的安装,无需解压官网setuptools里的文件

    python-easyinstall-setuptools-17.0(windows)

    `easy_install`是一个命令行工具,用于自动下载、构建、安装Python模块,它是`setuptools`库的一部分。`setuptools`是由Jim Hugunin开发的,目的是为了弥补Python标准库`distutils`功能上的不足,提供更强大的包管理...

    Python中easy_install 和 pip 的安装及使用

    首先,easy_install和pip都是用于从Python的公共资源库PyPI(Python Package Index)下载和安装软件包的工具。easy_install是较早的包管理器,而pip是它的升级版,提供了更多的功能和改进,如更友好的用户提示、包的...

    easy_install python包安装管理工具介绍

    easy_install更准确的说是一个和... 使用easy_install需要先安装setuptools工具,然后将easy_install所在目录加到PATH环境变量里: Windows: C:\Python25\Scripts 如果想删除通过easy_install安装的软件包,比如

    gevent easy_install

    使用gevent,可以对并发多个http请求的爬虫程序进行很好的优化, 缺点是,安装相对麻烦,这个包依赖于libevent,在windows下面用easy_install直接安装是不行的,福利来了,windowns版本的安装包一枚

Global site tag (gtag.js) - Google Analytics