Skip to the content.

Installation Guide

Get SnapThink running on your system in just a few steps.

System Requirements

Minimum Requirements

Download SnapThink

  1. Visit the SnapThink Releases page
  2. Download the version for your operating system:
    • macOS: SnapThink-macos.dmg or SnapThink-macos.zip
    • Windows: SnapThink-windows.exe or SnapThink-windows-portable.exe
    • Linux: SnapThink-linux.AppImage

Option 2: Build from Source

# Clone the repository
git clone https://github.com/snapthinkllm/SnapThinkLibrary.git
cd SnapThinkLibrary

# Install dependencies
npm install

# Build and package
npm run make

Installation Steps

macOS Installation

  1. Download the .dmg file
  2. Open the downloaded file
  3. Drag SnapThink to your Applications folder
  4. Launch SnapThink from Applications
  5. If you see a security warning, go to System Preferences > Security & Privacy and click “Open Anyway”

Windows Installation

Option A: Installer (NSIS)

  1. Download the .exe installer
  2. Run the installer as administrator
  3. Follow the installation wizard
  4. Launch SnapThink from the Start Menu

Option B: Portable

  1. Download the portable .exe file
  2. Create a folder for SnapThink (e.g., C:\SnapThink)
  3. Move the portable exe to this folder
  4. Run the executable directly

Linux Installation

  1. Download the .AppImage file
  2. Make it executable:
    chmod +x SnapThink-linux.AppImage
    
  3. Run the AppImage:
    ./SnapThink-linux.AppImage
    

Post-Installation Setup

1. Install Ollama (Required for AI Features)

SnapThink uses Ollama to run AI models locally.

macOS/Linux:

curl -fsSL https://ollama.com/install.sh | sh

Windows:

  1. Download Ollama from ollama.com
  2. Run the installer
  3. Restart your computer

2. Download Your First AI Model

After installing Ollama, download a model:

# Lightweight model (good for most uses)
ollama pull llama3.2:3b

# More powerful model (requires more RAM)
ollama pull llama3.2:8b

# Coding-focused model
ollama pull codellama:7b

3. Verify Installation

  1. Launch SnapThink
  2. Create a new notebook
  3. Type a message to test the AI chat
  4. If everything works, you’re ready to go! 🎉

Troubleshooting

“No models found” Error

Permission Errors (macOS)

Antivirus Issues (Windows)

Linux AppImage Issues

Next Steps

Once installed, check out:

Need help? Check our Troubleshooting Guide.