ti command not found

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

Introduction

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

ti: command not found

or when using sudo you get the following error message

sudo: ti: command not found

Solutions to ti: command not found

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

In Ubuntu ti is provided by ticgit package.

ticgit is:

ticgit is an issue tracking system based in the Git revision control system. Tickets are stored in a separate branch called “ticgit” within a Git repository that can be made available on a public server along with the project’s source code. The idea is to keep tickets close to a project without touching its source tree.

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

sudo apt-get -y install ticgit

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

You can also use apt command to install ticgit.

sudo apt -y install ticgit

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

sudo aptitude install ticgit

Summary

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