← 返回
开发者工具 中文

pip

Use pip for Python package install, upgrade, freeze, and dependency file workflows with virtual environments first. Use when handling requirements.txt, pip i...
使用 pip 进行 Python 包安装、升级、冻结以及依赖文件管理,优先使用虚拟环境。适用于处理 requirements.txt、pip i...
jvy
开发者工具 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 651
下载
💾 38
安装
1
版本
#latest

概述

pip

Use this skill for Python dependency management with safe defaults and reproducible results.

Scope

  • Create and maintain project-local virtual environments
  • Install, upgrade, uninstall, and inspect Python packages
  • Manage requirements.txt and lock-like pinned outputs (pip freeze)
  • Troubleshoot common pip failures (externally-managed-environment, resolver conflicts, wheel/build failures)

Safety Defaults

  • Prefer isolated installs:
  • project: python3 -m venv .venv
  • app CLI: pipx (if available)
  • Avoid global installs unless user explicitly asks.
  • Prefer python3 -m pip ... instead of bare pip to avoid interpreter mismatch.
  • Never run unknown setup.py or arbitrary install scripts without explicit user approval.

Fast Path

# Initialize venv once per project
python3 -m venv .venv
. .venv/bin/activate
python3 -m pip install --upgrade pip

# Install deps
python3 -m pip install -r requirements.txt

# Pin exact versions
python3 -m pip freeze > requirements.txt

Common Operations

# Install one or more packages
python3 -m pip install requests pydantic

# Upgrade specific package(s)
python3 -m pip install --upgrade requests

# Uninstall package
python3 -m pip uninstall -y requests

# Show package details
python3 -m pip show requests

# List outdated packages
python3 -m pip list --outdated

Reproducible Dependency Flows

# Install from lock-like file
python3 -m pip install -r requirements.txt

# Generate pinned snapshot
python3 -m pip freeze > requirements.txt

# Export JSON metadata for automation
python3 -m pip list --format=json

Troubleshooting

  • externally-managed-environment:
  • Use a venv (python3 -m venv .venv) and retry inside it.
  • If user asked for app CLI install, prefer pipx install .
  • No matching distribution found:
  • Check Python version compatibility.
  • Check package name/version typo.
  • Try python3 -m pip index versions when available.
  • Build/compile failure:
  • Upgrade build tooling: python3 -m pip install -U pip setuptools wheel
  • Install system headers/toolchain if needed, then retry.

Helper Script

Use the bundled helper for repeatable flows:

{baseDir}/scripts/pip-safe.sh detect
{baseDir}/scripts/pip-safe.sh ensure-venv .venv
{baseDir}/scripts/pip-safe.sh install --venv .venv -- requests pydantic
{baseDir}/scripts/pip-safe.sh requirements --venv .venv requirements.txt
{baseDir}/scripts/pip-safe.sh freeze --venv .venv > requirements.txt

Decision Rules

  • If task is project dependencies: use venv + pip.
  • If task is standalone CLI tool install for a user: suggest pipx first.
  • If system policy blocks global installs: stay in venv and explain why.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 23:21 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,784
content-creation

wps

jvy
面向中国用户的WPS Office工作流:创建、编辑、审阅、转换及排查.docx/.xlsx/.pptx及WPS格式的文字/表格/演示文档。
★ 38 📥 22,528
developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,120