Tarantool CE/EE Documentation portal logo
Support
Updated at July 17, 2026   02:08 PM

Installation

To install the tt command-line utility, use a package manager – Yum or APT on Linux, or Homebrew on macOS. If you need a specific build, you can build tt from sources.

Using Linux package managers

On Linux systems, you can install tt with yum or apt package managers from the tarantool/modules repository. Learn how to add this repository.

The installation command looks like this:

  • On Ubuntu:

    $ sudo apt-get install tt
  • On CentOS:

    $ sudo yum install tt

Using Homebrew on macOS

On macOS, use Homebrew to install tt:

$ brew install tt

Building from sources

To build tt from sources:

  1. Install third-party software required for building tt:
  1. Clone the tarantool/tt repository:

    git clone https://github.com/tarantool/tt --recursive
  2. Go to the tt directory:

    cd tt
  3. (Optional) Checkout a release tag to build a specific version:

    git checkout tags/v1.0.0
  4. Build tt using mage:

    mage build

tt will appear in the current directory.

Enabling shell completion

To enable the completion for tt commands, run the following command specifying the shell (bash or zsh):

. <(tt completion bash)