python 摸坑儿-easy_install使用

Python社区强大,有很多功能很不错的第三方库,easy_install是Python管理第三方库的一个工具

easy_install 使用

[官方文档](https://pythonhosted.org/setuptools/easy_install.html]

安装

1
sudo easy_install *.egg

安装指定版本

1
easy_install "SomePackage==2.0"

回归版本

1
sudo easy_install PackageName==1.2.3

删除包

1
easy_install -m peewee