例如:E:\itpub-python\code\scrapy>easy_install D:\installsofts\pyOpenSSL-0.11-py3.2-wi
n32.egg
把easy_install常用的方法总汇下,老是用着查着浪费时间
ref: http://pythonhosted.org/distribute/easy_install.html
第三方库 以下称为库
安装第三方库:
1 直接安装:
easy_install SQLObject
2 使用下载页面地址安装
easy_install -f http://pythonpaste.org/package_index.html SQLObject
3 直接给出下载url 安装
easy_install http://example.com/path/to/MyPackage-1.2.3.tgz
4 .egg文件的安装
easy_install /my_downloads/OtherPackage-3.2.1-py2.3.egg
5 跟新安装过的包
easy_install –upgrade PyProtocols
6 安装已经下载和提取在当前目录下的包
easy_install .
不同需求的安装:
1 安装特定特定版本的库
easy_install “SomePackage==2.0”
2 大于某个版本
easy_install “SomePackage>2.0
卸载库:
在easy_install.th 里面删除路径,然后删除对应的.egg 文件
easy_install -m PackageName
还有很多可配置项,如自定义仓库,限制查找仓库url等。
更新库:(例如更新pip)
python -m pip install --upgrade pip