Skip to content

UnaCODE Installation Guide

Complete installation guide for UnaCODE CLI and server components.

Quick Installation

pip install unacode

Method 2: From Source

git clone https://github.com/unacode/unacode.git
cd unacode
pip install -e .

Server Setup

Start the V5 server for full functionality:

# Start server on localhost:47187
unacode server start

# Or with custom configuration
unacode server start --port 47187 --host 0.0.0.0

Verification

Verify your installation:

# Check CLI version
unacode --version

# Test server connection
unacode server status

# Run health check
unacode health-check

Configuration

Configure UnaCODE for your environment:

# Initialize configuration
unacode config init

# Set API endpoints
unacode config set api_url https://v5.unacode.mrmaidenos.com

# Configure authentication
unacode config set auth_token YOUR_TOKEN