Revise installation instructions in README.md, CONTRIBUTING.md, and USAGE_GUIDE.md to clarify the installation order for Ollama and flakestorm. Added detailed platform-specific installation steps for Ollama and emphasized the need for a virtual environment for Python packages. Included troubleshooting tips for common installation issues.

This commit is contained in:
Entropix 2025-12-30 18:36:42 +08:00
parent cb034b41ff
commit dbbdac9d43
3 changed files with 173 additions and 22 deletions

View file

@ -29,8 +29,27 @@ Please be respectful and constructive in all interactions. We welcome contributo
```
3. **Install Ollama** (for mutation generation)
**macOS:**
```bash
# Option 1: Homebrew (recommended)
brew install ollama
# Option 2: Official installer
# Visit https://ollama.ai/download and download the .dmg file
```
**Windows:**
- Visit https://ollama.com/download/windows
- Download and run `OllamaSetup.exe`
**Linux:**
```bash
curl -fsSL https://ollama.com/install.sh | sh
```
**Then pull the model:**
```bash
curl -fsSL https://ollama.ai/install.sh | sh
ollama pull qwen3:8b
```