Run Aether on your computer
— private, free, offline-capable.

One file. One command. Your AI assistant + multi-agent runtime, on your hardware. Connects to free local LLMs (Ollama) or cloud APIs (OpenAI / Anthropic).

Choose your platform

Install in one command

Pick your OS — copy, paste, done. The installer takes 30 seconds and creates a Start Menu shortcut.

macOS

12 Monterey or newer · Apple Silicon + Intel

Single-line install via curl. Creates ~/.aether and a CLI in ~/.local/bin/aether.

curl -fsSL https://glixylabs.com/install.sh | sh
  • Requires Python 3.10+ (brew install python)
  • Apple Silicon: GPU acceleration via Ollama Metal
  • Adds aether CLI to ~/.local/bin
🐧

Linux

Ubuntu, Debian, Fedora, Arch · x86_64 / aarch64

Same install script as macOS. Or pip-install directly if you prefer.

curl -fsSL https://glixylabs.com/install.sh | sh
pip install glixy-aether && aether start
  • Optional: NVIDIA CUDA for GPU LLMs
  • systemd unit example in aether-runtime/
  • Works on Ubuntu 20.04+, Debian 11+, Fedora 38+, Arch

Docker

Any host with Docker

Run Aether in an isolated container. Mount your data dir to persist memory across upgrades.

docker run -p 7777:7777 -v $HOME/.aether:/data glixylabs/aether
  • Image size ≈ 220 MB (python:3.12-slim base)
  • Multi-arch: linux/amd64, linux/arm64
System requirements

Runs on almost anything

💻

Minimum

4 GB RAM · 2 GB free disk · any modern CPU. No GPU required (uses Ollama on CPU or cloud APIs).

Recommended (local LLM)

16 GB RAM · NVIDIA RTX 3060 / Apple Silicon M1 or newer · 30 GB disk for model weights.

🚀

Production

NVIDIA A100 / 4090 · 64 GB RAM · 200 GB NVMe. Or use Glixy hosted GPUs (₹2,499/user/mo).

🔌

What you need

Python 3.10+ (auto-detected). Optional: Ollama for free local LLMs, or any OpenAI-compatible API key.

After install

3 steps to your first chat

  1. Step 1. Run start.bat (Windows) or ./start.sh (mac/linux). Aether opens at localhost:7777.
  2. Step 2. Pick a model — install Ollama for free, or paste an OpenAI / Anthropic key in Settings.
  3. Step 3. Type a message. Aether will plan, call tools, remember, and answer.
# Windows · PowerShell
PS> iwr https://glixylabs.com/install.ps1 | iex
[aether] Python found: Python 3.12.1
[aether] Installing to %LOCALAPPDATA%\Aether
[aether] Downloading runtime ...
[aether] Installing dependencies ...
[aether] ✓ Created Start Menu shortcut
[aether] ✓ Created Desktop shortcut

# Launch
PS> aether start
  ✦ Glixy Aether v0.4.2
  → http://127.0.0.1:7777
  → provider: ollama  model: llama3
  → data: %LOCALAPPDATA%\Aether

# Browser opens automatically.
# Or visit http://localhost:7777
FAQ

Common questions

Is Aether really free?

Yes. The runtime is MIT-licensed. The Pro hosted plan (₹2,499/user/mo) is optional — for teams who want managed GPUs and SSO. Self-hosting is free forever.

Does my data go anywhere?

No, unless you choose a cloud model. By default Aether runs your conversations through your local Ollama install. Memory and chat history live in a SQLite file on your machine.

Do I need a GPU?

No — small models (Llama 3 8B, Phi-3) run on CPU. For 70B-class models you'll want a GPU or use an API key. The runtime auto-detects what's available.

Can I uninstall cleanly?

Delete %LOCALAPPDATA%\\Aether on Windows or ~/.aether on mac/linux. That's everything — no registry, no global Python packages.

How do I upgrade?

Re-run the install script. It overwrites the runtime, keeps your data and memory.

Can I bring my own model?

Yes. Aether speaks the OpenAI-compatible chat API. Point it at Ollama, vLLM, OpenRouter, Together, Anyscale, your own server — it just works.

What about MCP?

Native. Drop an MCP server config in ~/.aether/mcp.json and its tools show up in the dashboard.

Get the real thing, running tonight.

One command. Your private AI. Free forever.

iwr https://glixylabs.com/install.ps1 | iex copy