How To Install procyon-expressions on CentOS 7

In this tutorial we learn how to install procyon-expressions on CentOS 7. procyon-expressions is The procyon-expressions framework provides a more natural form of

Introduction

In this tutorial we learn how to install procyon-expressions on CentOS 7.

What is procyon-expressions

The procyon-expressions framework provides a more natural form of code generation. Rather than requiring bytecode to be emitted directly, as with procyon-reflection and other popular libraries like ASM, procyon-expressions enables code composition using declarative expression trees. These expression trees may then be compiled directly into callbacks or coupled with a MethodBuilder. The procyon-expressions API is almost a direct port of System.Linq.Expressions from .NET’s Dynamic Language Runtime, minus the dynamic callsite support (and with more relaxed rules regarding type conversions).

We can use yum or dnf to install procyon-expressions on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install procyon-expressions.

Install procyon-expressions on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install procyon-expressions using yum by running the following command:

sudo yum -y install procyon-expressions

Install procyon-expressions 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 procyon-expressions using dnf by running the following command:

sudo dnf -y install procyon-expressions

How To Uninstall procyon-expressions on CentOS 7

To uninstall only the procyon-expressions package we can use the following command:

sudo dnf remove procyon-expressions

References

Summary

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