We will set up a fresh Ubuntu Desktop and compile the latest version of Godot Engine.
Therefore we make three steps in this tutorial:
Let's start!
This is a very beginner friendly tutorial, so you don't have to know much.
Just watch the videos and repeat the steps.
Download Ubuntu Desktop and read the step-by-step guide how to boot up from USB/DVD.
Open the Terminal and update Ubuntu:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt autoremove
3 . Now it's time to compile Godot Engine:
sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev \
libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libfreetype6-dev libssl-dev libudev-dev \
libxi-dev libxrandr-dev
sudo apt-get install git
git clone https://github.com/godotengine/godot.git
cd godot
scons platform=x11
cd bin
./godot.x11.tools.64
That's it. Easy, right?
Now it's time to start a new project!