Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions docs/content/docs/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,49 @@ pip install "headroom-ai[all]"
```

## Provider-Specific Issues
### Windows: `headroom` command not found

If Headroom installs successfully but running:

```bash
headroom --help
```

or

```bash
headroom wrap claude
```

returns:

```text
'headroom' is not recognized as an internal or external command
```

the CLI may have been installed successfully but Python's **Scripts** directory is not available on your `PATH`.

You can verify that the executable exists with:

```powershell
python -m pip show -f headroom-ai
```

If `headroom.exe` appears in the output, add your Python Scripts directory to your `PATH`.

For example:

```text
C:\Users\<username>\AppData\Local\Programs\Python\Python312\Scripts
```

After updating your `PATH`, restart your terminal and run:

```bash
headroom --help
```

to confirm the CLI is available.
### OpenAI: Invalid API key

```python
Expand Down
Loading