Installing Nectar
This guide walks you through installing Nectar on your computer.
Prerequisites
Make sure you’ve completed Before You Install first. You need Docker, Ollama, and at least one AI model installed.Quick Install
macOS
- Download Nectar from GitHub Releases
- Open the
.dmgfile - Drag Nectar to your Applications folder
- Important: Open Terminal and run:
xattr -cr /Applications/Nectar.app - Launch Nectar from Applications
- Follow the setup wizard
Why the Terminal Command?
Nectar is currently unsigned. macOS quarantines downloaded apps and blocks them from running. Thexattr -cr command removes this quarantine flag so the app can launch. This is normal for alpha software—we’ll sign future releases.Windows
- Download Nectar from GitHub Releases
- Run the
.exeinstaller - Windows SmartScreen may warn about an unrecognized app—click “More info” → “Run anyway”
- Follow the installation wizard
- Launch Nectar from Start Menu
SmartScreen Warning
Nectar is currently unsigned. Windows will show a SmartScreen warning. This is normal for alpha software.Linux
Debian/Ubuntu (.deb):
# Download from GitHub Releases
sudo dpkg -i Nectar.deb
sudo apt-get install -f # Install dependencies if needed
AppImage:
chmod +x Nectar.AppImage
./Nectar.AppImage
Download from GitHub Releases.
Setup Wizard
When you first launch Nectar, the setup wizard will guide you through:
1. Create Your Account
- Choose a username
- Set up passkey authentication (biometrics or security key)
- No passwords to remember!
2. Connect to Ollama
Nectar will automatically detect Ollama. If it doesn’t:
- Make sure Ollama is running
- Check that you have at least one model installed
- Click “Retry Detection”
3. Select Default Model
Choose which AI model Nectar should use by default:
- The wizard will show models you’ve installed
- You can change this anytime in Settings
4. Create Your First Honey Jar
A Honey Jar is where your knowledge lives. Start with:
- Personal Notes - For general documents
- Work Projects - For professional files
- Or skip and create one later
Verify Installation
After setup, verify everything is working:
Check Services Status
Open Settings → System Status. You should see:
- ✅ Nectar Services: Running
- ✅ Ollama: Connected
- ✅ AI Model: [Your model name]
Test Bee Chat
- Click on Bee in the sidebar
- Type: “Hello, can you help me?”
- You should get an AI response
If you get a response, congratulations! Nectar is working.
What’s Installed
Nectar installs the following on your computer:
| Component | Location | Purpose |
|---|---|---|
| Nectar App | Applications (Mac) / Program Files (Win) | Main application |
| Data Directory | ~/.nectar/ | Your data, configs |
| Database | ~/.nectar/data/ | Local PostgreSQL data |
Your data is stored locally and never leaves your machine unless you explicitly connect to a STING Server.
Next Steps
Now that Nectar is installed:
- First Steps Guide - Learn to use Honey Jars and Bee chat
- Import Documents - Add your existing files
- Connect to STING Server - (Optional) Link to a team server
Troubleshooting
Nectar won’t start
Mac:
If right-click → Open doesn’t work, run this in Terminal:
xattr -cr /Applications/Nectar.app
If you still have issues, check System Settings → Privacy & Security—there may be an “Open Anyway” button for blocked apps.
Windows: Run as Administrator the first time. If SmartScreen blocks it, click “More info” → “Run anyway”.
Linux: Check Docker is installed and running:
docker --version
docker compose version
“Cannot connect to Ollama”
- Make sure Ollama is running:
ollama serve - Verify a model is installed:
ollama list - Restart Nectar
“No AI models found”
Install a model first:
ollama pull llama3.3
Then restart Nectar.