How To Install rlottie on CentOS 8

In this tutorial we learn how to install rlottie on CentOS 8. rlottie is Platform independent standalone library that plays Lottie Animation

Introduction

In this tutorial we learn how to install rlottie on CentOS 8.

What is rlottie

rlottie is a platform independent standalone c++ library for rendering vector based animations and art in realtime. Lottie loads and renders animations and vectors exported in the bodymovin JSON format. Bodymovin JSON can be created and exported from After Effects with bodymovin, Sketch with Lottie Sketch Export, and from Haiku. For the first time, designers can create and ship beautiful animations without an engineer painstakingly recreating it by hand. Since the animation is backed by JSON they are extremely small in size but can be large in complexity!

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

Install rlottie on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install rlottie

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

sudo dnf -y install rlottie

How To Uninstall rlottie on CentOS 8

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

sudo dnf remove rlottie

References

Summary

In this tutorial we learn how to install rlottie on CentOS 8 using yum and dnf.