How To Install procyon-expressions on Rocky Linux 8

In this tutorial we learn how to install procyon-expressions on Rocky Linux 8. procyon-expressions is The procyon-expressions framework provides a more natural form of Linq-like code generation

Introduction

In this tutorial we learn how to install procyon-expressions on Rocky Linux 8.

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 Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install procyon-expressions.

Install procyon-expressions on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install procyon-expressions

Install procyon-expressions on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install procyon-expressions

How To Uninstall procyon-expressions on Rocky Linux 8

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

sudo dnf remove procyon-expressions

procyon-expressions Package Contents on Rocky Linux 8

/usr/share/doc/procyon-expressions
/usr/share/doc/procyon-expressions/README.md
/usr/share/java/procyon
/usr/share/java/procyon/procyon-expressions-0.5.33.jar
/usr/share/java/procyon/procyon-expressions.jar
/usr/share/licenses/procyon-expressions
/usr/share/licenses/procyon-expressions/License.txt

References

Summary

In this tutorial we learn how to install procyon-expressions on Rocky Linux 8 using yum and dnf.