easy_install 是一个基于setuptools的工具,帮助我们自动下载、编译、安装和管理python packages.
ubuntu自带easy_install工具。如需手工安装,可以直接在pypi下载码源
Setuptools下载地址:https://pypi.python.org/pypi/setuptools 进入setup.py目录,执行python setup.py install
1,知道包名,默认从PYPI寻找版本
easy_install
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,指定本地的安装包目录
添加选项--install-dir=DIR, -d DIR
easy_install需要2.6以上的python版本
easy_install官网:
http://peak.telecommunity.com/DevCenter/EasyInstall
https://blog.csdn.net/pfm685757/article/details/48651389