DESCRIPTION.rst 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. Project Info
  2. ============
  3. * Project Page: https://github.com/pypa/pip
  4. * Install howto: https://pip.pypa.io/en/latest/installing.html
  5. * Changelog: https://pip.pypa.io/en/latest/news.html
  6. * Bug Tracking: https://github.com/pypa/pip/issues
  7. * Mailing list: http://groups.google.com/group/python-virtualenv
  8. * Docs: https://pip.pypa.io/
  9. * User IRC: #pypa on Freenode.
  10. * Dev IRC: #pypa-dev on Freenode.
  11. Quickstart
  12. ==========
  13. First, :doc:`Install pip <installing>`.
  14. Install a package from `PyPI`_:
  15. ::
  16. $ pip install SomePackage
  17. [...]
  18. Successfully installed SomePackage
  19. Show what files were installed:
  20. ::
  21. $ pip show --files SomePackage
  22. Name: SomePackage
  23. Version: 1.0
  24. Location: /my/env/lib/pythonx.x/site-packages
  25. Files:
  26. ../somepackage/__init__.py
  27. [...]
  28. List what packages are outdated:
  29. ::
  30. $ pip list --outdated
  31. SomePackage (Current: 1.0 Latest: 2.0)
  32. Upgrade a package:
  33. ::
  34. $ pip install --upgrade SomePackage
  35. [...]
  36. Found existing installation: SomePackage 1.0
  37. Uninstalling SomePackage:
  38. Successfully uninstalled SomePackage
  39. Running setup.py install for SomePackage
  40. Successfully installed SomePackage
  41. Uninstall a package:
  42. ::
  43. $ pip uninstall SomePackage
  44. Uninstalling SomePackage:
  45. /my/env/lib/pythonx.x/site-packages/somepackage
  46. Proceed (y/n)? y
  47. Successfully uninstalled SomePackage
  48. .. _PyPI: http://pypi.python.org/pypi/