Installation
Get WooTUI installed on your system in just a few minutes.
Prerequisites
Before installing WooTUI, you'll need:
1. Google Gemini API Key (Required)
WooTUI uses Google's Gemini AI for translations. You'll need an API key to use the application.
How to get your API key:
- Visit Google AI Studio
- Sign in with your Google account
- Click "Get API Key" or "Create API Key"
- Copy your API key (starts with
AIza...)
Keep your API key safe! Don't share it publicly or commit it to version control.
Google Gemini offers a free tier with generous limits for testing. You can start translating without entering payment information.
2. WooCommerce with WPML
WooTUI is designed to work with:
- WooCommerce - Your WordPress e-commerce plugin
- WPML (WordPress Multilingual Plugin) - For managing translations
If you haven't set up WPML yet, you can still use WooTUI—just note that you'll need WPML to import the translated products back into your store.
3. Supported Operating Systems
WooTUI works on:
- macOS (ARM64 and x64)
- Windows (x64)
- Linux (x64 and ARM64)
Installation Instructions
macOS
Open your terminal and run:
curl -sf https://kkris0.github.io/wootui/install | bash
This script will:
- Download the latest WooTUI binary for your architecture
- Install it to
~/.local/bin/wootui - Make it executable
After installation, you may need to add ~/.local/bin to your PATH:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
(Use ~/.bash_profile if you're using Bash instead of Zsh)
Windows
Open PowerShell and run:
irm https://kkris0.github.io/wootui/install.ps1 | iex
This script will:
- Download the latest WooTUI binary for Windows
- Install it to
%LOCALAPPDATA%\Programs\wootui - Add it to your PATH automatically
You may need to restart your terminal after installation for the PATH changes to take effect.
If you're using Windows Terminal, Ctrl+Enter may not work due to a known issue. Use Ctrl+J instead to submit wizard steps.
Linux
For x64 (most desktop systems):
curl -sf https://kkris0.github.io/wootui/install | bash
For ARM64 (Raspberry Pi, ARM servers):
curl -sf https://kkris0.github.io/wootui/install-arm64 | bash
The script will install WooTUI to ~/.local/bin/wootui and make it executable.
Add to PATH if needed:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
Verifying Installation
Check that WooTUI is installed correctly:
wootui --version
You should see output like:
WooTUI v1.0.0
If you see a "command not found" error, make sure ~/.local/bin (or the Windows equivalent) is in your PATH.
First Launch
When you first launch WooTUI, you'll be taken to the Settings Screen to configure your API key:
wootui
You'll see:
- API Key - Paste your Gemini API key here
- Model ID - Leave as
gemini-2.5-pro(recommended) - Batch Size - Leave as
5(default) - Output Directory - Defaults to
~/Downloads
Setting Your API Key
- Press
Tabto navigate to the API Key field - Paste your Gemini API key (the one starting with
AIza...) - Press
Enterto save - Press
Escto return to the Main Screen
Your settings are saved automatically to:
- macOS/Linux:
~/.config/wootui/config.json - Windows:
%APPDATA%\wootui\config.json
You only need to enter your API key once!
Troubleshooting Installation
"Command not found" after installation
Solution: Add the installation directory to your PATH.
macOS/Linux:
export PATH="$HOME/.local/bin:$PATH"
Windows: Restart your terminal or PowerShell window.
Installation script fails or times out
Solution: Download the binary manually from the GitHub Releases page and place it in your PATH.
Permission denied (macOS/Linux)
Solution: Make the binary executable:
chmod +x ~/.local/bin/wootui
Windows Defender or antivirus blocks installation
Solution: Temporarily disable antivirus or add an exception for WooTUI. The binary is safe—it's just not code-signed yet.
"SSL certificate problem" during download
Solution: Update your system's SSL certificates:
macOS:
brew install openssl
Ubuntu/Debian:
sudo apt-get update && sudo apt-get install ca-certificates
Uninstalling WooTUI
If you need to uninstall WooTUI:
macOS/Linux:
rm ~/.local/bin/wootui
rm -rf ~/.config/wootui
Windows:
Remove-Item "$env:LOCALAPPDATA\Programs\wootui" -Recurse
Remove-Item "$env:APPDATA\wootui" -Recurse
Next Steps
Now that WooTUI is installed, let's translate your first product!
➡️ Translate Your First Product
Or learn more about: