How To Install godot-runner on CentOS 7

In this tutorial we learn how to install godot-runner on CentOS 7. godot-runner is Shared binary to play games developed with the Godot engine

Introduction

In this tutorial we learn how to install godot-runner on CentOS 7.

What is godot-runner

This package contains a godot-runner binary for the Linux X11 platform, which can be used to run any game developed with the Godot engine simply by pointing to the location of the game’s data package.

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

Install godot-runner on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install godot-runner

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

sudo dnf -y install godot-runner

How To Uninstall godot-runner on CentOS 7

To uninstall only the godot-runner package we can use the following command:

sudo dnf remove godot-runner

References

Summary

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