Windows Installation
Izwi runs on Windows 10 and later with optional CUDA support for NVIDIA GPUs.
Requirements
- Windows 10 (version 1903+) or Windows 11
- 8 GB RAM minimum (16 GB recommended)
- 10 GB free disk space (more for models)
- NVIDIA GPU (optional, for CUDA acceleration)
Install from Installer (Recommended)
Step 1: Download
Download Izwi-Setup-*.exe from GitHub Releases.
Step 2: Run Installer
- Double-click the downloaded
.exefile - If Windows SmartScreen appears, click More info → Run anyway
- Follow the installation wizard
- Choose installation location (default:
C:\Program Files\Izwi)
Step 3: Verify
Open Command Prompt or PowerShell and run:
izwi --versionInstall via winget (Coming Soon)
winget install Agentem.IzwiCUDA Support (NVIDIA GPUs)
For NVIDIA GPU acceleration:
Step 1: Install NVIDIA Drivers
Download and install the latest drivers from NVIDIA.
Step 2: Install CUDA Toolkit
Download CUDA Toolkit from NVIDIA CUDA Downloads.
Step 3: Verify CUDA
izwi status --detailedLook for "CUDA: available" in the output.
Data Locations
| Data | Location |
|---|---|
| Models | %APPDATA%\izwi\models\ |
| Config | %APPDATA%\izwi\config.toml |
| Logs | %APPDATA%\izwi\logs\ |
| Program | C:\Program Files\Izwi\ |
To open these folders:
# Open models folder explorer "%APPDATA%\izwi\models" # Open config folder explorer "%APPDATA%\izwi"Running at Startup
Option 1: Task Scheduler
- Open Task Scheduler
- Click Create Basic Task
- Name: "Izwi Server"
- Trigger: When I log on
- Action: Start a program
- Program:
C:\Program Files\Izwi\izwi.exe - Arguments:
serve
Option 2: Startup Folder
- Press
Win + R, typeshell:startup, press Enter - Create a shortcut to
izwi.exe serve
Uninstall
Via Settings
- Open Settings → Apps → Installed apps
- Find Izwi
- Click Uninstall
Via Control Panel
- Open Control Panel → Programs → Uninstall a program
- Find Izwi
- Click Uninstall
Remove Data (Optional)
# Remove all Izwi data (including models!) Remove-Item -Recurse -Force "$env:APPDATA\izwi"Troubleshooting
"Windows protected your PC" (SmartScreen)
This appears because the app isn't code-signed yet:
- Click More info
- Click Run anyway
Command not found: izwi
The installer should add Izwi to your PATH. If not:
- Open System Properties → Environment Variables
- Under User variables, edit Path
- Add
C:\Program Files\Izwi - Restart your terminal
Port 8080 already in use
Another application is using port 8080. Use a different port:
izwi serve --port 8888CUDA not detected
- Verify NVIDIA drivers:
nvidia-smi - Ensure CUDA Toolkit is installed and in PATH
- Restart your computer after CUDA installation
Firewall blocking connections
If you can't access Izwi from other devices:
- Open Windows Defender Firewall
- Click Allow an app through firewall
- Add
izwi-server.exe
Building from Source
Prerequisites
- Install Visual Studio Build Tools
- Install Rust
- Install Git
Build
git clone https://github.com/agentem-ai/izwi.git cd izwi cargo build --releaseBinaries will be in target\release\.