# ERROR: You must give at least one requirement to install (see "pip help install")

- **ID:** `python/pip-options-conflict`
- **Domain:** python
- **Category:** config_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

The pip install command was run without specifying any package or requirement, possibly due to an empty requirements file or a typo in the command line.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.8 | active | — | — |
| 3.9 | active | — | — |
| 3.10 | active | — | — |
| 3.11 | active | — | — |
| 3.12 | active | — | — |

## Workarounds

1. **** (99% success)
   ```
   Specify a package: `pip install package_name` or use `pip install -r requirements.txt` if the file exists.
   ```
2. **** (90% success)
   ```
   Check for typos: ensure the package name is not accidentally empty (e.g., `pip install $VAR` where VAR is unset).
   ```
3. **** (80% success)
   ```
   Use `pip install --help` to review options and correct the command.
   ```

## Dead Ends

- **** — This installs an unintended package, not solving the original problem. (90% fail)
- **** — If setup.py is missing, it will fail with a different error. (50% fail)
- **** — The error persists because no requirement is given. (95% fail)
