# WARNING: Skipping foo as it is not installed.

- **ID:** `python/pip-uninstall-not-found`
- **Domain:** python
- **Category:** config_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

pip uninstall target is installed under a different name or in a different environment.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.x | active | — | — |

## Workarounds

1. **** (90% success)
   ```
   pip list | grep -i foo
pip uninstall -y Foo-Bar
   ```
2. **** (85% success)
   ```
   python -m pip uninstall -y foo
   ```

## Dead Ends

- **** — Same warning; package still not found. (90% fail)
- **** — Leaves .dist-info and breaks pip metadata; may remove unrelated files. (70% fail)
