mirror of
https://github.com/flakestorm/flakestorm.git
synced 2026-05-04 21:32:43 +02:00
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:
parent
cb034b41ff
commit
dbbdac9d43
3 changed files with 173 additions and 22 deletions
|
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue