Version:

O3DE System Requirements

Open 3D Engine (O3DE) has a minimum set of hardware and software requirements for development, as outlined in the following sections. In the Software prerequisites and configuration section, each prerequisite is listed along with any specific configuration steps required.

Hardware requirements

The following sections specify the minimum and recommended system hardware required to install or build O3DE Editor and related tools, and to develop O3DE projects. RAM and free disk space requirements are dependent on the options that you select when configuring your project in O3DE. Performance will vary based on the complexity of your project’s levels.

Note:

Building the engine from source requires 2GB per thread in addition to your system’s running requirements. However, it is possible to limit the number of threads that are allocated to the build process.

Installing the engine with the pre-built installer requires less disk space and RAM than building from source.

Minimum hardware specification

Hardware ComponentMinimum Required Specification
CPUQuad-core (4 cores) 64-bit x86-capable Intel or AMD processor, 2.5 GHz, with the SSE 4.1 SIMD instruction set
RAM16 GB RAM (8GB RAM may be acceptable if you limit the number of threads used for compilation)
GPU- DirectX 12 or Vulkan-compatible video card
- 2 GB VRAM
- Shader Model 6.2 (or Shader Model 6.3 to use raytracing features)
- NVIDIA GeForce GTX 1060, driver version 471.11 or later recommended or
- AMD Radeon Pro 560 or
- Intel HD 630
Hard Disk40 GB (using the pre-built installer ) or 100+ GB (depending on project configuration) of free disk space
Display Device1366 x 768 pixel screen resolution
Hardware ComponentMinimum Recommended Specification
CPUHexa-core (6 cores) 64-bit x86-capable Intel or AMD processor, 2.5 GHz, supports the SSE 4.1 SIMD instruction set
RAM32 GB RAM
GPU- DirectX 12 or Vulkan-compatible video card
- 6 GB VRAM
- Shader Model 6.2 (or Shader Model 6.3 to use raytracing features)
- NVIDIA GeForce GTX 16 Series, driver version 471.11 or later recommended or
- AMD RX 5000 Series
Hard DiskSSD with 1 TB of free disk space
Display Device1366 x 768 pixel screen resolution

Software prerequisites and configuration

Creating new projects or using the advanced development features of O3DE requires several software components depending on the operating system you are using.

Microsoft Windows

At this time, Microsoft Windows is the primary platform for using the O3DE editor and for building source. Specifically, Windows 10 version 20H2 (10.0.19042) or later is required.

Microsoft Visual Studio

The following versions of Visual Studio are supported:

You can use any Microsoft Visual Studio license, including the Community edition.

In addition, Windows 10 SDK version at 10.0.19041.0 or later is required.

Visual Studio configuration

The default Visual Studio installation might not include all of the features that are required by O3DE. The following steps describe how to ensure that the necessary Visual Studio features are enabled:

  1. Launch the Visual Studio Installer.

  2. Choose Modify on the version of Visual Studio that you’ll use with O3DE.

    Note:
    Make sure you are modifying an installation of Visual Studio [Community, Enterprise, Professional] and not a different product, such as Visual Studio Build Tools.

  3. On the Workloads tab:

    • Select Game development with C++.
      • In the Installation details panel on the right, select a Windows 10 SDK version at 10.0.19041.0 or later.
    • Select Desktop development with C++.
  4. Once you’ve completed your changes, choose the Install button in the lower right hand corner, selecting your preferred download option.

    Note:
    If you’ve made changes to an existing installation, you might see a Modify button in the lower right corner of the options window instead.

After the install completes, you might be prompted to restart your system.

Microsoft Visual Studio C++ Redistributable

You will also need the latest version of Visual C++ Redistributable for Visual Studio , if it was not installed by the Desktop development with C++ workload for Visual Studio.

After installing the C++ redistributable, you might be prompted to restart your system.

CMake

CMake 3.22.0 or later is required to configure and build O3DE projects. We strongly recommend that you install the Latest Release from the CMake download page instead of a Release Candidate. During installation, select one of the options that adds CMake to the system PATH. This will save you from having to do this later.

Add CMake to the system PATH during installation

CMake configuration validation

Several O3DE CLI scripts require the cmake.exe command line tool to be available from a command line window. To see if this tool is on the system path, open a command prompt and use the --version command.

cmake --version

If the current CMake version was not returned because CMake cannot be found, locate the bin folder in the CMake installation directory and add the path to that folder to the front of your Windows system PATH environment variable by doing the following:

  1. Open the Windows Start menu.

  2. Type “env” to search for environment variables. Choose Edit system environment variables.

  3. Choose the Environment Variables button.

  4. Select Path under System variables.

  5. Choose the Edit… button.

  6. Choose New to add a new path to the list and enter the full path to the CMake bin folder.

    Manually add CMake to the system PATH

  7. (Recommended) Choose Move Up to move the path to the top of the list.

  8. Choose OK to save your changes and close the windows that were opened.

  9. Verify that cmake is on the system path by opening a new command line window and running cmake --version again.

Linux

The primary Linux distribution for using the O3DE Editor is Ubuntu 20.04 LTS.

Note:
Support for Ubuntu on 64-bit ARMv8 processors is in an experimental stage.

The following instructions describe how to retrieve and install the required software packages through Ubuntu’s apt command-line utility.

CMake

As with the other operating systems, CMake 3.22.0 or later is required to configure and build O3DE projects. We strongly recommend that you install the Latest Release of CMake rather than the default one provided by your current Linux distribution. If CMake is already installed, but does not match the minimum version, you will need to remove it with the following command.

sudo apt remove cmake

Install CMake using the instructions for the version of Ubuntu that you have installed:

In order to get the latest version of CMake for Ubuntu 20.04 LTS, you can add the Kitware APT repository to your Ubuntu package list and run apt to install it. Refer to Kitware APT Page for more information.

wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null

echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ focal main' | sudo tee /etc/apt/sources.list.d/kitware.list >/dev/null

sudo apt update

sudo apt install cmake

You can install the default version of CMake for Ubuntu 22.04 LTS. For additional information, refer to the CMake download page .

sudo apt install cmake

Once installed, verify that the version meets the minimum version criteria.

cmake --version

Clang

O3DE requires Clang and the GNU C++ Library to compile all of the native C++ code.

Install Clang and the GNU C++ Library using the instructions for the version of Ubuntu that you have installed:

The minimum version of Clang required by O3DE is clang-12. To override the older default version of Clang for Ubuntu 20.04 LTS during the installation of Clang, you will need to specify a version as part of the install command. You will also need to install the corresponding GNU C++ Library .

sudo apt install libstdc++-9-dev clang-12

You can install the default version of Clang for Ubuntu 22.04 LTS, which is clang-14. You will also need to install the corresponding GNU C++ Library .

sudo apt install libstdc++-12-dev clang

Vulkan supported video drivers

In addition to the minimum hardware requirements for video cards for O3DE, Linux requires that the latest drivers for the video card are installed and enabled. Refer to the video card manufacturer’s support page for instructions on how to do this.

Additional library dependencies

O3DE also requires some additional library packages to be installed:

  • libglu1-mesa-dev
  • libxcb-xinerama0
  • libxcb-xinput0
  • libxcb-xinput-dev
  • libxcb-xfixes0-dev
  • libxcb-xkb-dev
  • libxkbcommon-dev
  • libxkbcommon-x11-dev
  • libfontconfig1-dev
  • libpcre2-16-0
  • zlib1g-dev
  • mesa-common-dev
  • libstdc++-12-dev
  • libunwind-dev
  • libzstd-dev

You can download and install these packages through apt.

sudo apt install libglu1-mesa-dev libxcb-xinerama0 libxcb-xinput0 libxcb-xinput-dev libxcb-xfixes0-dev libxcb-xkb-dev libxkbcommon-dev libxkbcommon-x11-dev libfontconfig1-dev libpcre2-16-0 zlib1g-dev mesa-common-dev libunwind-dev libzstd-dev

Ninja Build System (Optional)

By default, CMake uses Unix Makefiles for building O3DE. O3DE supports multiple build configurations (debug, profile, and release), which you specify when building O3DE. Unix Makefiles only supports single-configuration builds, so you must determine which configuration you want to build when you generate the project. All project builds are based on that configuration. In order to change the build configuration, you need to regenerate the project with the different configuration. This process restricts O3DE’s support for multiple-configuration builds and slows down building workflows.

The Ninja build system is an alternative to Linux’s default Unix Makefiles. The Ninja build system makes it easier to generate, configure, and build your project. With the Ninja build system, specifically Ninja Multi-Config , you can generate the project once and determine which configuration to build during build time. We recommend that you use this generator for O3DE development. You can install the Ninja build tool through apt.

sudo apt install ninja-build

macOS

Support for developing on macOS is in an experimental stage. At a minimum, you need macOS Big Sur, Intel x86_64, XCode 12.1 or later, and a Metal-compatible video card that meets the hardware requirements above.