How To Install aime on CentOS 7
Introduction
In this tutorial we learn how to install aime
on CentOS 7.
What is aime
aime is a programming language with a C like syntax, intended for application extending purposes. The aime collection comprises the language description, an application embeddable interpreter (libaime), the interpreter C interface description and a standalone interpreter. Many examples on how the interpreter can be used (embedded in an application) are also available, together with some hopefully useful applications, such as expression evaluators.
We can use yum
or dnf
to install aime
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install aime.
Install aime on CentOS 7 Using yum
Update yum database with yum
using the following command.
After updating yum database, We can install aime
using yum
by running the following command:
Install aime on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
After updating yum database, We can install aime
using dnf
by running the following command:
How To Uninstall aime on CentOS 7
To uninstall only the aime
package we can use the following command:
References
Summary
In this tutorial we learn how to install aime
on CentOS 7 using yum
and dnf
.