METADATA 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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: pytest; extra == 'testing'
  24. Requires-Dist: virtualenv (>=1.10); extra == 'testing'
  25. Requires-Dist: scripttest (>=1.3); extra == 'testing'
  26. Requires-Dist: mock; extra == 'testing'
  27. Project Info
  28. ============
  29. * Project Page: https://github.com/pypa/pip
  30. * Install howto: https://pip.pypa.io/en/latest/installing.html
  31. * Changelog: https://pip.pypa.io/en/latest/news.html
  32. * Bug Tracking: https://github.com/pypa/pip/issues
  33. * Mailing list: http://groups.google.com/group/python-virtualenv
  34. * Docs: https://pip.pypa.io/
  35. * User IRC: #pypa on Freenode.
  36. * Dev IRC: #pypa-dev on Freenode.
  37. Quickstart
  38. ==========
  39. First, :doc:`Install pip <installing>`.
  40. Install a package from `PyPI`_:
  41. ::
  42. $ pip install SomePackage
  43. [...]
  44. Successfully installed SomePackage
  45. Show what files were installed:
  46. ::
  47. $ pip show --files SomePackage
  48. Name: SomePackage
  49. Version: 1.0
  50. Location: /my/env/lib/pythonx.x/site-packages
  51. Files:
  52. ../somepackage/__init__.py
  53. [...]
  54. List what packages are outdated:
  55. ::
  56. $ pip list --outdated
  57. SomePackage (Current: 1.0 Latest: 2.0)
  58. Upgrade a package:
  59. ::
  60. $ pip install --upgrade SomePackage
  61. [...]
  62. Found existing installation: SomePackage 1.0
  63. Uninstalling SomePackage:
  64. Successfully uninstalled SomePackage
  65. Running setup.py install for SomePackage
  66. Successfully installed SomePackage
  67. Uninstall a package:
  68. ::
  69. $ pip uninstall SomePackage
  70. Uninstalling SomePackage:
  71. /my/env/lib/pythonx.x/site-packages/somepackage
  72. Proceed (y/n)? y
  73. Successfully uninstalled SomePackage
  74. .. _PyPI: http://pypi.python.org/pypi/