pip

Installation
SKILL.md

pip

pip is the standard package manager for Python. v24+ (2025) focuses on performance and standard compliance (PEP 668).

When to Use

  • Python: It is the default.
  • Virtual Environments: Always use inside a venv.

Quick Start

python -m venv .venv
source .venv/bin/activate

pip install requests
pip freeze > requirements.txt
Installs
3
GitHub Stars
10
First Seen
Feb 10, 2026
pip — g1joshi/agent-skills