How To Install godot on Fedora 36
Introduction
In this tutorial we learn how to install godot
on Fedora 36.
What is godot
Godot is an advanced, feature-packed, multi-platform 2D and 3D game engine. It provides a huge set of common tools, so you can just focus on making your game without reinventing the wheel. Godot is completely free and open source under the very permissive MIT license. No strings attached, no royalties, nothing. Your game is yours, down to the last line of engine code.
We can use yum
or dnf
to install godot
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install godot.
Install godot on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install godot
using dnf
by running the following command:
sudo dnf -y install godot
Install godot on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install godot
using yum
by running the following command:
sudo yum -y install godot
How To Uninstall godot on Fedora 36
To uninstall only the godot
package we can use the following command:
sudo dnf remove godot
godot Package Contents on Fedora 36
/usr/bin/godot
/usr/lib/.build-id
/usr/lib/.build-id/9f
/usr/lib/.build-id/9f/d1924bda505ae6a0470b0f2a7edaf10fa98708
/usr/share/applications/org.godotengine.Godot.desktop
/usr/share/bash-completion/completions/godot
/usr/share/doc/godot
/usr/share/doc/godot/CHANGELOG.md
/usr/share/doc/godot/DONORS.md
/usr/share/doc/godot/README.md
/usr/share/fish/vendor_completions.d/godot.fish
/usr/share/icons/hicolor/scalable/apps/godot.svg
/usr/share/licenses/godot
/usr/share/licenses/godot/AUTHORS.md
/usr/share/licenses/godot/COPYRIGHT.txt
/usr/share/licenses/godot/LICENSE.txt
/usr/share/licenses/godot/LOGO_LICENSE.md
/usr/share/man/man6/godot.6.gz
/usr/share/metainfo/org.godotengine.Godot.appdata.xml
/usr/share/mime/application/org.godotengine.Godot.xml
/usr/share/zsh/site-functions/_godot
References
Summary
In this tutorial we learn how to install godot
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).