Skip to content
Merged
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
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ beacon udp listen --port 38400
Webhook mechanism + falsification tests:
- `docs/BEACON_MECHANISM_TEST.md`


```bash
# Start webhook server
beacon webhook serve --port 8402
Expand Down Expand Up @@ -628,6 +627,8 @@ MIT (see `LICENSE`).
### Common Issues

#### `beacon: command not found` after pip install

**Linux/macOS:**
```bash
# Ensure pip's bin directory is in PATH
export PATH="$HOME/.local/bin:$PATH"
Expand All @@ -636,6 +637,25 @@ export PATH="$HOME/.local/bin:$PATH"
pip install --user beacon-skill
```

**Windows (PowerShell):**
```powershell
# Add Scripts directory to PATH
$userPath = [Environment]::GetEnvironmentVariable("Path", "User")
$scriptPath = (Get-Command python).Source | Split-Path -Parent
$newPath = "$userPath;$scriptPath\Scripts"
[Environment]::SetEnvironmentVariable("Path", $newPath, "User")

# Restart PowerShell and verify
beacon --version
```

**Windows (Command Prompt):**
```cmd
REM Add to PATH permanently
setx PATH "%PATH%;%APPDATA%\Python\Scripts"
REM Then restart Command Prompt
```

#### SSL Certificate Errors
If you see `SSL: CERTIFICATE_VERIFY_FAILED`:
```bash
Expand Down