How to Install Godot (.NET Version)

How to Install Godot (.NET Version)

In this article, we'll cover how to install the .NET edition of Godot - which is both free and open source. Before beginning, you may wish to review Godot's system requirements.

Info
The .NET version of Godot uses the C# programming language. If you would rather work with Godot's built-in scripting language GDScript, please see this article instead: How to Install Godot (Standard Version)

Installing the .NET SDK

In order for the .NET version of Godot to run on your computer, you also need to install the .NET SDK.

1. Head to the .NET download page at https://dotnet.microsoft.com/en-us/download
2. On the download page, click the download button for the latest .NET SDK. Your operating system should be automatically detected and download the appropriate file.


3. Once downloaded, double-click the file to start the installation process and go through the prompts.


4. Verify the installation by opening a Command Prompt/Terminal window. In this window, run the following command:
  1. dotnet
If the .NET SDK installed properly, you should see a list of options displayed.


Installing Godot

In this section, we'll cover how to install Godot itself. Note that we recommend installing the latest stable version for optimal compatibility with our courses.

1. Head to the Godot website at https://godotengine.org/
2. Click the "Download Latest" button on the front page. This will automatically take you to the download page for your operating system.



3. Once on the download page, click the .NET download option. This will download the Godot engine to your local computer.


4. Once downloaded, perform any unzipping of the file if necessary. Otherwise, you just need to click the application file to start the program - no further "installation" required!

After this point, the next step is to set up a code editor of your choice. We recommend using Visual Studio Code, whose installation instructions you can find here: How to Install Visual Studio Code

    • Related Articles

    • How to Install Godot (Standard Version)

      In this article, we'll cover how to install the standard edition of Godot - which is both free and open source. Before beginning, you may wish to review Godot's system requirements. The Standard version of Godot uses Godot's own scripting language ...
    • How to Install MonoGame

      This article will cover how to set up the MonoGame framework for game development. MonoGame recommends using Visual Studio Community for development - the setup of which is covered in this article. You can, however, use other code editors like Visual ...
    • How to Install SFML for Windows

      In this article, we'll cover how to install the Simple and Fast Multimedia Library (SFML) for C++ projects for Windows. If you'd like to SFML for Mac, please see this article instead: How to Install SFML for Mac Installing SFML 1. Navigate to the ...
    • How to Install Unity

      This article will cover both how to install Unity for the first time, and how to install new versions of Unity for pre-existing installations. Before installation you may wish to review Unity's system requirements. First Time Installation Only - ...
    • How to Install Python

      If you intend to use our Python courses with a code editor like Python's built-in IDLE editor, Visual Studio Code, Anaconda, Spyder, or something else, you will need to first install the Python runtime to your local computer. This short article will ...