ctpl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ctpl: command not found
or when using sudo you get the following error message
sudo: ctpl: command not found
Solutions to ctpl: command not found
How To Fix ctpl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ctpl is provided by ctpl package.
ctpl is:
CTPL is a C template engine library allowing fast and easy computation of templates with precise control over the parsing environment.
CTPL supports a wide range of input types through GIO like in-memory, files, FTP, HTTP and more.
This package contains a standalone command-line utility to parse CTPL templates.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ctpl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ctpl.
sudo apt -y install ctpl
Or if you have aptitude installed you can use the following command.
sudo aptitude install ctpl
Summary
In this tutorial we learn how to fix ctpl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.