Agent skill
pip
pip Python package manager. Use for Python packages.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/pip
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
Core Concepts
PyPI
The Python Package Index.
Wheels (.whl)
Pre-compiled binary packages. Much faster to install than Source Distributions (.tar.gz).
PEP 668 (Externally Managed)
Prevents pip install outside venv on modern Linux distros (Debian 12+, Ubuntu 24.04) to protect system packages.
Best Practices (2025)
Do:
- Use
uv: The new hotness.uv pip installis 100x faster than standard pip. Compatible API. - Use
pip-tools: Compilerequirements.intorequirements.txtwith hashes for security. - Always Venv: Never install global packages.
Don't:
- Don't use
sudo pip: This breaks your OS.
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?