tarantool command not found

In this troubleshooting guide we learn how to fix tarantool command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

tarantool: command not found

or when using sudo you get the following error message

sudo: tarantool: command not found

Solutions to tarantool: command not found

How To Fix tarantool: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tarantool is provided by tarantool package.

tarantool is:

Tarantool is an in-memory database and a Lua application server. Its key properties include:

  • flexible data model
  • multiple index types: HASH, TREE, BITSET
  • optional persistence and strong data durability
  • log streaming replication
  • Lua functions, procedures, triggers, with rich access to database API, JSON support, inter-procedure and network communication libraries

This package provides Tarantool command line interpreter and server.

To fix this problem, we can install more using the command below.

sudo apt-get -y install tarantool

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install tarantool.

sudo apt -y install tarantool

Or if you have aptitude installed you can use the following command.

sudo aptitude install tarantool

Summary

In this tutorial we learn how to fix tarantool command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.