auto-multiple-choice command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
auto-multiple-choice: command not found
or when using sudo you get the following error message
sudo: auto-multiple-choice: command not found
Solutions to auto-multiple-choice: command not found
How To Fix auto-multiple-choice: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu auto-multiple-choice is provided by auto-multiple-choice package.
auto-multiple-choice is:
Utility to manage multiple choice questionnaires, with optionally mixed questions and answers. AMC provides automatic marking from papers' scans. Annotated papers are produced. Marks can be exported as a LibreOffice sheet file.
To fix this problem, we can install more using the command below.
sudo apt-get -y install auto-multiple-choice
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install auto-multiple-choice.
sudo apt -y install auto-multiple-choice
Or if you have aptitude installed you can use the following command.
sudo aptitude install auto-multiple-choice
Summary
In this tutorial we learn how to fix auto-multiple-choice command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.