-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
andershsueh edited this page Feb 10, 2026
·
1 revision
This guide will help you install ALICE on your system.
- Node.js: Version 18.0.0 or higher
- LLM Backend: One of the following:
Go to the Releases page and download the appropriate version:
| Platform | File | Notes |
|---|---|---|
| Windows x64 | alice-win-x64.zip |
For 64-bit Windows |
| macOS Intel | alice-macos-x64.tar.gz |
For Intel Macs |
| macOS Apple Silicon | alice-macos-arm64.tar.gz |
For M1/M2/M3 Macs |
| Linux x64 | alice-linux-x64.tar.gz |
For 64-bit Linux |
# Extract the zip file
# Double-click alice.exe or run from PowerShell:
.\alice.exe# Extract
tar -xzf alice-*.tar.gz
# Add execute permission
chmod +x alice-*
# Optional: Move to system path
sudo mv alice-* /usr/local/bin/alice
# Run
alicegit clone https://github.com/AndersHsueh/Alice.git
cd Alicenpm installThis will install all required packages including:
-
ink- CLI UI framework -
axios- HTTP client for LLM APIs -
ajv- JSON Schema validation for tools -
glob- File searching -
simple-git- Git operations
npm run buildThis compiles TypeScript to JavaScript in the dist/ directory.
# Development mode (supports live editing)
npm run dev
# Production mode
npm start
# Or run directly
node dist/index.jsnpm install -g alice-cli
alice
⚠️ Note: npm package publication is planned for a future release.
- Download LM Studio from https://lmstudio.ai/
- Install and launch LM Studio
-
Download a model:
- Click "Search" tab
- Search for models (e.g., "qwen", "llama", "mistral")
- Download your preferred model
-
Start Local Server:
- Click "Local Server" tab
- Load your model
- Click "Start Server"
- Default URL:
http://127.0.0.1:1234/v1
- Install Ollama from https://ollama.ai/
-
Pull a model:
ollama pull qwen2.5:7b
-
Start Ollama (usually runs automatically)
- Default URL:
http://localhost:11434/v1
- Default URL:
- Get API Key from https://platform.openai.com/
-
Set Environment Variable:
# macOS / Linux export OPENAI_API_KEY="sk-xxxxx" # Windows set OPENAI_API_KEY=sk-xxxxx
Run ALICE with the --help flag:
alice --helpIf you see the help message, installation is successful!
On first run, ALICE will:
- Show the welcome banner (skip with
--no-banner) - Create configuration directory at
~/.alice/ - Generate default
settings.jsonc
# First run
alice
# Or skip banner
alice --no-banner- Quick Start Guide - Get started quickly
- Configuration - Configure ALICE
- Model Configuration - Add more LLM models
Make sure you ran npm install first.
Your LLM backend is not running. Start LM Studio or Ollama.
Run chmod +x alice to add execute permission.
For more issues, see Troubleshooting.