How To Install procyon-reflection on CentOS 8
Introduction
In this tutorial we learn how to install procyon-reflection on CentOS 8.
What is procyon-reflection
The procyon-reflection framework provides a rich reflection and code generation API with full support for generics, wildcards, and other high-level Java type concepts. It is based on .NET’s System.Reflection and System.Reflection. Emit APIs and is meant to address many of the shortcomings of the core Java reflection API, which offers rather limited and cumbersome support for generic type inspection. Its code generation facilities include a TypeBuilder, MethodBuilder, and a bytecode emitter.
We can use yum or dnf to install procyon-reflection on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install procyon-reflection.
Install procyon-reflection on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install procyon-reflection using yum by running the following command:
sudo yum -y install procyon-reflection
Install procyon-reflection on CentOS 8 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-reflection using dnf by running the following command:
sudo dnf -y install procyon-reflection
How To Uninstall procyon-reflection on CentOS 8
To uninstall only the procyon-reflection package we can use the following command:
sudo dnf remove procyon-reflection
References
Summary
In this tutorial we learn how to install procyon-reflection on CentOS 8 using yum and dnf.