安装源:
豆瓣 http://pypi.douban.com/simple/
本地安装:
egg文件: 使用settools自带的安装脚本easy_install进行安装
whl文件: pip install whl全路径
远程安装:
安装pip:easy_install pip
pip --version 显示pip版本
pip install 包名
安装指定版本
升级包:
pip install --upgrade 包名
easy_install --upgrade 包名 或者 easy_install --U 包名
卸载包
手动卸载:删除文件中的路径,删除相应的包
命令卸载:easy_install -m 包名 只是删除pth文件中的路径,包其实没有删除
pip uninstall 包名 自动删除包