METADATA 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Metadata-Version: 2.0
  2. Name: pip
  3. Version: 1.5.6
  4. Summary: A tool for installing and managing Python packages.
  5. Home-page: https://pip.pypa.io/
  6. Author: The pip developers
  7. Author-email: python-virtualenv@groups.google.com
  8. License: MIT
  9. Keywords: easy_install distutils setuptools egg virtualenv
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: MIT License
  14. Classifier: Topic :: Software Development :: Build Tools
  15. Classifier: Programming Language :: Python :: 2
  16. Classifier: Programming Language :: Python :: 2.6
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.1
  20. Classifier: Programming Language :: Python :: 3.2
  21. Classifier: Programming Language :: Python :: 3.3
  22. Provides-Extra: testing
  23. Requires-Dist: mock; extra == 'testing'
  24. Requires-Dist: pytest; extra == 'testing'
  25. Requires-Dist: scripttest (>=1.3); extra == 'testing'
  26. Project Info
  27. ============
  28. * Project Page: https://github.com/pypa/pip
  29. * Install howto: https://pip.pypa.io/en/latest/installing.html
  30. * Changelog: https://pip.pypa.io/en/latest/news.html
  31. * Bug Tracking: https://github.com/pypa/pip/issues
  32. * Mailing list: http://groups.google.com/group/python-virtualenv
  33. * Docs: https://pip.pypa.io/
  34. * User IRC: #pypa on Freenode.
  35. * Dev IRC: #pypa-dev on Freenode.
  36. Quickstart
  37. ==========
  38. First, :doc:`Install pip <installing>`.
  39. Install a package from `PyPI`_:
  40. ::
  41. $ pip install SomePackage
  42. [...]
  43. Successfully installed SomePackage
  44. Show what files were installed:
  45. ::
  46. $ pip show --files SomePackage
  47. Name: SomePackage
  48. Version: 1.0
  49. Location: /my/env/lib/pythonx.x/site-packages
  50. Files:
  51. ../somepackage/__init__.py
  52. [...]
  53. List what packages are outdated:
  54. ::
  55. $ pip list --outdated
  56. SomePackage (Current: 1.0 Latest: 2.0)
  57. Upgrade a package:
  58. ::
  59. $ pip install --upgrade SomePackage
  60. [...]
  61. Found existing installation: SomePackage 1.0
  62. Uninstalling SomePackage:
  63. Successfully uninstalled SomePackage
  64. Running setup.py install for SomePackage
  65. Successfully installed SomePackage
  66. Uninstall a package:
  67. ::
  68. $ pip uninstall SomePackage
  69. Uninstalling SomePackage:
  70. /my/env/lib/pythonx.x/site-packages/somepackage
  71. Proceed (y/n)? y
  72. Successfully uninstalled SomePackage
  73. .. _PyPI: http://pypi.python.org/pypi/