How To Install aime on CentOS 7

In this tutorial we learn how to install aime on CentOS 7. aime is An application embeddable programming language interpreter

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.

sudo yum makecache

After updating yum database, We can install aime using yum by running the following command:

sudo yum -y install aime

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.

sudo dnf makecache

After updating yum database, We can install aime using dnf by running the following command:

sudo dnf -y install aime

How To Uninstall aime on CentOS 7

To uninstall only the aime package we can use the following command:

sudo dnf remove aime

References

Summary

In this tutorial we learn how to install aime on CentOS 7 using yum and dnf.