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.
Примечание
A Tarantool Enterprise Edition’s release package includes the tt utility extended with additional features like importing and exporting data.
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
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.