How To Install godot-headless on CentOS 7

In this tutorial we learn how to install godot-headless on CentOS 7. godot-headless is Godot headless editor binary for CLI usage

Introduction

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

What is godot-headless

This package contains the headless binary for the Godot game engine, particularly suited for CLI usage, e.g. to export projects from a server or build system. To run game servers, see the godot-server package which contains an optimized template build.

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

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

sudo yum -y install godot-headless

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

sudo dnf -y install godot-headless

How To Uninstall godot-headless on CentOS 7

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

sudo dnf remove godot-headless

References

Summary

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