`
xiaolin0199
  • 浏览: 573258 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Python中的easy_install安装

阅读更多

Python中的easy_install工具很爽,它的作用类似于Php中的pear,或者Ruby中的gem,或者Perl中的cpan。

如果想使用easy_install工具,可能需要先安装setuptools,不过更酷的方法是使用ez_setup.py脚本:

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

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

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

比如说要安装Python的MySQL支持,可以执行如下命令,系统会自动在pypi网站列表里查找相关软件包:

easy_install MySQL-python

如果你在Windows+python2.5上执行如上命令的话,可能会出现如下错误:

Processing MySQL-python-1.2.3c1.tar.gz
Running MySQL-python-1.2.3c1\setup.py -q bdist_egg --dist-dir c:\docume~1\...
\locals~1\temp\easy_install-fvvfve\MySQL-python-1.2.3c1\egg-dist-tmp-q9moxf
error: The system cannot find the file specified

出现这类错误的原因是选错了版本,针对这个案列,我们可以显式指定软件包的版本号:

easy_install "MySQL-python==1.2.2"

通过easy_install安装软件,相关安装信息会保存到easy-install.pth文件里,路径类似如下形式:

Windows:C:\Python25\Lib\site-packages\easy-install.pth
Linux:/usr/local/lib/python25/site-packages/easy-install.pth

如果想删除通过easy_install安装的软件包,比如说:MySQL-python,可以执行命令:

easy_install -m MySQL-python

此操作会从easy-install.pth文件里把MySQL-python的相关信息抹去,剩下的egg文件,你可以手动删除。

分享到:
评论

相关推荐

    python 安装easy_install和pip

    python 安装easy_install和pip

    python easy_install

    使用ActivePython的安装,自带了easy_install

    python easy_install 安装包和安装教程

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

    easy_install.exe review board

    描述中提到"easy_install ez_install.py 生成文件 python",意味着在使用Easy Install时,用户可能执行了`ez_install.py`脚本来安装`easy_install.exe`,这是Easy Install的可执行文件,通常位于Scripts目录下。...

    python easy_install 和 pip

    通过`easy_install`,用户可以直接从Python Eggs(一种打包格式)或者源代码仓库中安装软件包。只需在命令行输入`easy_install package_name`,就可以自动下载并安装指定的包及其依赖。然而,`easy_install`存在一些...

    setuptools-14.1.1 python easy_install安装包

    Python的生态系统中有多个工具用于管理和安装包,其中`setuptools`和`easy_install`是早期广泛使用的工具。本文将深入探讨这两个工具以及如何利用它们来安装Python库。 `setuptools`是一个扩展Python标准库`...

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

    `easy_install`的主要作用是自动化安装Python的软件包,用户可以通过命令行接口来运行它,比如在命令提示符中输入`easy_install <package_name>`,这个工具会自动下载并安装指定的包及其依赖。然而,随着Python生态...

    python easy install

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

    python安装器easy_install

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

    Python中安装easy_install的方法

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

    easy_install

    ez_setup-0.9可能是这个工具的一个特定版本,用于在没有setuptools的环境中安装它。 现在,让我们深入了解一下easy_install的工作原理和使用方法: 1. **安装**:easy_install通常通过运行Python的`setup.py easy_...

    easy_install-2.7

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

    Python中easy_install 和 pip 的安装及使用

    老版本的python中只有easy_install, 没有pip。 easy_install 打包和发布 Python 包 pip 是包管理 easy_install 的安装 前提是python的环境已配置好 下载地址:https://pypi.python.org/pypi/ez_setup 下载 ez_...

    python-easyinstall-setuptools-17.0(windows)

    在下载并解压`setuptools-17.0`压缩包后,只需在命令行中运行`ez_setup.py`脚本,即可完成`setuptools`的安装,之后就可以使用`easy_install`命令来安装所需的Python包了。 使用`easy_install`的优点在于其自动化...

    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版本的安装包一枚

    安装easy_install的py文件

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

    解决pythonSSL问题,pip,easy_install无法联网

    只需要把这个代码下载后放到C:\Python27\Scripts中,或者没有安装pip和easy_install时放在C:\Python27中都可,然后用命令行安装python SSLproblem.py 然后一切问题就都解决了

Global site tag (gtag.js) - Google Analytics