tilt command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tilt: command not found
or when using sudo you get the following error message
sudo: tilt: command not found
Solutions to tilt: command not found
How To Fix tilt: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tilt is provided by ruby-tilt package.
ruby-tilt is:
Tilt is a thin interface over a bunch of different Ruby template engines in an attempt to make their usage as generic possible. This is useful for web frameworks, static site generators, and other systems that support multiple template engines but don’t want to code for each of them individually.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ruby-tilt
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ruby-tilt.
sudo apt -y install ruby-tilt
Or if you have aptitude installed you can use the following command.
sudo aptitude install ruby-tilt
Summary
In this tutorial we learn how to fix tilt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.