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