coqide command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
coqide: command not found
or when using sudo you get the following error message
sudo: coqide: command not found
Solutions to coqide: command not found
How To Fix coqide: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu coqide is provided by coqide package.
coqide is:
Coq is a proof assistant for higher-order logic, which allows the development of computer programs consistent with their formal specification. It is developed using Objective Caml and Camlp5.
This package provides CoqIde, a graphical user interface for developing proofs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install coqide
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install coqide.
sudo apt -y install coqide
Or if you have aptitude installed you can use the following command.
sudo aptitude install coqide
Summary
In this tutorial we learn how to fix coqide command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.