How To Install svgsalamander on CentOS 7

In this tutorial we learn how to install svgsalamander on CentOS 7. svgsalamander is An SVG engine for Java

Introduction

In this tutorial we learn how to install svgsalamander on CentOS 7.

What is svgsalamander

SVG Salamander is an SVG engine for Java that’s designed to be small, fast, and allow programmers to use it with a minimum of fuss. It’s in particular targeted for making it easy to integrate SVG into Java games and making it much easier for artists to design 2D game content - from rich interactive menus to charts and graphcs to complex animations.

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

Install svgsalamander on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install svgsalamander

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

sudo dnf -y install svgsalamander

How To Uninstall svgsalamander on CentOS 7

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

sudo dnf remove svgsalamander

References

Summary

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