What problem does it solve? Modern Python distributions on macOS and Linux enforce PEP 668, which blocks pip install into system or Homebrew site-packages with an externally-managed-environment error. This Skill guides the safe installation of global Python CLI tools without corrupting system environments. ## Core Features & Use Cases - Tool Manager Hierarchy: Recommends uv tool install as the default, with pipx as a fallback and custom user virtualenvs for advanced cases. - Python Version Compatibility Handling: Explains how to work around missing binary wheels on new host Python versions (e.g., 3.14) by pinning an older interpreter such as 3.11. - Anti-Pattern Rejection: Explicitly blocks dangerous approaches like pip install --user and pip --break-system-packages that corrupt Homebrew site-packages. - Use Case: You run pip install ruff on macOS and hit error: externally-managed-environment. This Skill directs you to uv tool install ruff, which creates an isolated environment and symlinks the binary into ~/.local/bin. ## Quick Start Ask the assistant to install a global Python CLI tool like ruff or black on your machine without triggering PEP 668 errors.