您的位置:首页 > 编程语言 > Python开发

pip:强大的Python包管理工具

2013-08-12 11:42 936 查看
转载;http://blog.csdn.net/rumswell/article/details/8838356

pip:强大的Python包管理工具(A tool for installing and managing Python packages.)
Project Page: https://github.com/pypa/pip

安装包(Install a package):

[plain] view
plaincopy

$ pip install SomePackage==1.0  

  [...]  

  Successfully installed SomePackage  

显示已安装的包(Show what files were installed):

[plain] view
plaincopy

$ pip show --files SomePackage  

  Name: SomePackage  

  Version: 1.0  

  Location: /my/env/lib/pythonx.x/site-packages  

  Files:  

   ../somepackage/__init__.py  

   [...]  

列出所有过时的包(List what packages are outdated):

[plain] view
plaincopy

$ pip list --outdated  

  SomePackage (Current: 1.0 Latest: 2.0)  

升级一个包(Upgrade a package):

[plain] view
plaincopy

$ pip install --upgrade SomePackage  

  [...]  

  Found existing installation: SomePackage 1.0  

  Uninstalling SomePackage:  

    Successfully uninstalled SomePackage  

  Running setup.py install for SomePackage  

  Successfully installed SomePackage  

卸载一个包(Uninstall a package:)

[plain] view
plaincopy

$ pip uninstall SomePackage  

  Uninstalling SomePackage:  

    /my/env/lib/pythonx.x/site-packages/somepackage  

  Proceed (y/n)? y  

  Successfully uninstalled SomePackage  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: