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.
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
On macOS, use Homebrew to install tt:
$ brew install tt
To build tt from sources:
- Install third-party software required for building
tt:
- git, the version control system.
- Go language, version 1.18 or later.
- mage build tool.
-
Clone the tarantool/tt repository:
git clone https://github.com/tarantool/tt --recursive -
Go to the
ttdirectory:cd tt -
(Optional) Checkout a release tag to build a specific version:
git checkout tags/v1.0.0 -
Build
ttusing mage:mage build
tt will appear in the current directory.
To enable the completion for tt commands, run the following command
specifying the shell (bash or zsh):
. <(tt completion bash)