Loading...

pip

Python's standard package installer - fetches from PyPI and resolves dependencies.

When to use: Installing any Python library; pinning versions for reproducibility.

Example: pip install scikit-learn==1.4.1 installs a pinned version. pip install -e . is editable mode.

More Jupyter & Colab Glossary terms