📦 deps(thirdparty): update snapshots
This commit is contained in:
@@ -4,28 +4,15 @@
|
||||
{{QUICK_REFERENCE}}
|
||||
# Prerequisites
|
||||
|
||||
Check if Python is installed:
|
||||
The bundled scripts require Python 3 (standard library only — no third-party packages, no network access). Check if it is available:
|
||||
|
||||
```bash
|
||||
python3 --version || python --version
|
||||
```
|
||||
|
||||
If Python is not installed, install it based on user's OS:
|
||||
If Python is not installed, **do not install it yourself**. Stop and ask the user to install Python 3 using their preferred method (e.g. from [python.org](https://www.python.org/downloads/) or their OS package manager), then continue once it is available. Never run package-manager or system-modifying commands (`sudo`, `brew`, `apt`, `winget`, etc.) on the user's machine for this skill.
|
||||
|
||||
**macOS:**
|
||||
```bash
|
||||
brew install python3
|
||||
```
|
||||
|
||||
**Ubuntu/Debian:**
|
||||
```bash
|
||||
sudo apt update && sudo apt install python3
|
||||
```
|
||||
|
||||
**Windows:**
|
||||
```powershell
|
||||
winget install Python.Python.3.12
|
||||
```
|
||||
If the user prefers not to install Python, skip the CLI searches and rely on the Quick Reference sections above.
|
||||
|
||||
> **Note:** On Windows, use `python` instead of `python3` to run scripts (e.g., `python scripts/search.py` instead of `python3 scripts/search.py`).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user