taikutaiku
User GuidePluginsAPI Reference

Installation

Install the taiku CLI and desktop app.

taiku has two installable pieces:

  • the CLI, which creates and manages sessions
  • the desktop app, which adds device presence, remote launch, and a native window

On macOS, the recommended install gets you both at once.

Install

macOS (Homebrew) installs the desktop app and CLI in one step:

brew install --cask taiku-dev/tap/taiku

This places taiku.app in your Applications folder and adds the taiku CLI to your PATH.

CLI only

If you only need the CLI: brew install taiku-dev/tap/taiku

Linux (Homebrew):

brew install taiku-dev/tap/taiku

Any platform (curl):

curl -sSf https://taiku.live/get | sh

Any platform (npm):

npx taiku

Verify it works

Check that the CLI is available:

taiku --version

If the command is missing, add the install location to your PATH and run it again.

Sign in

Authenticate once so the CLI can create sessions under your account:

taiku login

On headless machines, taiku prints a URL and code instead of opening a browser.

Direct downloads

Use direct downloads if you want to install manually or need a specific architecture.

Platform coverage

Linux and Windows builds have not been tested as thoroughly as macOS yet. They should still be usable, so feel free to try them and report any issues you hit.

macOS

Apple SiliconIntel
Desktop appDownloadDownload
CLIDownloadDownload

The desktop app download is a .dmg. Open it and drag taiku.app to your Applications folder. The CLI is bundled inside the app at taiku.app/Contents/MacOS/taiku.

Linux

x86-64ARM64
Desktop appDownloadDownload
CLIDownloadDownload

The desktop app tarball includes both taiku-desktop and taiku CLI, plus an install.sh script:

tar -xzf taiku-desktop-x86_64-unknown-linux-gnu.tar.gz
cd taiku-desktop
sudo ./install.sh
tar -xzf taiku-x86_64-unknown-linux-musl.tar.gz
mv taiku /usr/local/bin/taiku
chmod +x /usr/local/bin/taiku

Windows

x86-64
CLIDownload

Extract the zip and place taiku.exe somewhere on your PATH.

Next

Once the CLI is installed and authenticated, continue to the quickstart guide.

On this page