Skip to content

Installation

Install the Dojo CLI with a single command:

Terminal window
curl -fsSL https://dojo.ninja/install.sh | sh

This detects your OS and architecture automatically and installs the dojo binary to ~/.dojo/bin/.

Terminal window
dojo --version

Add Dojo to your PATH if it’s not already:

Terminal window
# bash
echo 'export PATH="$HOME/.dojo/bin:$PATH"' >> ~/.bashrc
# zsh
echo 'export PATH="$HOME/.dojo/bin:$PATH"' >> ~/.zshrc
# fish
fish_add_path ~/.dojo/bin

To update to the latest version, run the install script again:

Terminal window
curl -fsSL https://dojo.ninja/install.sh | sh
PlatformArchitectureStatus
macOSApple Silicon (arm64)
macOSIntel (x64)
Linuxx64
Linuxarm64
Windowsx64🚧 Coming soon

Once installed, follow the Quick Start guide to create your first repository.