Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 705 Bytes

pip_tutorial.md

File metadata and controls

17 lines (14 loc) · 705 Bytes

What is PIP and PyPI

PIP is a command line tool for installing and managing python packages which are found in Python Package Index(PyPI). PyPI is a repository for python modules.

Useful PIP commands

  1. pip help Shows all the commands that are available in pip.
  2. pip list List of all installed packages.
  3. pip search Search PyPI for a package.
  4. pip check Verify installed for compatible dependencies.
  5. pip freeze Output installed packages in requirements format.
  6. pip show Show information about a package.

General options

  1. --no-cache-dir Disable the cache.
  2. -q --quiet Print less output.
  3. --cache-dir <dir> Store the cache data in .