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
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
tt/
directory:cd tt
(Optional) Checkout a release tag to build a specific version:
git checkout tags/v1.0.0
Build
tt
using mage:mage build
tt
will appear in the current directory.