phpab command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
phpab: command not found
or when using sudo you get the following error message
sudo: phpab: command not found
Solutions to phpab: command not found
How To Fix phpab: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu phpab is provided by phpab package.
phpab is:
The PHP AutoloadBuilder CLI tool phpab is a command line application to automate the process of generating an autoload require file with the option of creating static require lists as well as phar archives.
To fix this problem, we can install more using the command below.
sudo apt-get -y install phpab
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install phpab.
sudo apt -y install phpab
Or if you have aptitude installed you can use the following command.
sudo aptitude install phpab
Summary
In this tutorial we learn how to fix phpab command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.