Quick guide to installing and setting up Minibase Ollama on your computer.
Download
Log in to Minibase
Go to Settings β API Keys
Click "Download Minibase Ollama"
Select your platform (macOS, Linux, or Windows)
Wait 5-10 seconds for your custom package
Install
macOS / Linux
```bash
# Unzip
unzip minibase-ollama-*.zip
cd minibase-ollama-*
# Run installer
chmod +x install.sh
./install.sh
```
Windows
Unzip the downloaded file
Run `install.bat`
Verify Installation
```bash
# Check version
ollama --version
# Start server
ollama serve
```
What Gets Installed?
`ollama` binary in `~/.minibase/bin/`
`config.json` with your API key in `~/.minibase/`
PATH updated to include the binary
Important: The `config.json` contains your personal API key. Keep it secure!
System Requirements
OS: macOS 11+, Linux (Ubuntu 20.04+), Windows 10+
RAM: 8 GB minimum (16 GB recommended)
Storage: 10 GB free space + space for models
Network: Internet connection for downloading models
Troubleshooting
"Command not found"
```bash
# Add to PATH manually
export PATH="$HOME/.minibase/bin:$PATH"
echo 'export PATH="$HOME/.minibase/bin:$PATH"' >> ~/.zshrc
```
macOS Security Warning
Go to System Settings β Privacy & Security
Click "Allow Anyway" for ollama
Run `ollama` again and click "Open"
Port 11434 Already in Use
```bash
# Check what's using the port
lsof -i :11434
# Kill it or use different port
export OLLAMA_HOST="127.0.0.1:11435"
```
Next Steps
Quick Start Guide - Download your first model
Ollama Documentation- Full documentation
β