Arcanum User Documentation Help

Installation

Arcanum can be installed in two ways:

  • Executable (.exe): The easiest method. Just download and run — no setup required.

  • Source Code: For developers or advanced users who want to build Arcanum manually.

Arcanum is fully portable, meaning no installer is required. Place the executable file wherever you like and run it directly.

Hardware Requirements

  • Windows 10 or later (Some community members are trying to make Arcanum run via Proton, but to no success so far)

Setup Requirements

Installation Using an Executable

  1. Go to the Releases tab and go to the Assets of the latest Release.

    GitHub Releases Tab Screenshot
  2. Choose the desired version of the Arcanum executable. (See below for details!)

  3. Download the selected Arcanum.zip version and extract the exectuable file (.exe) from it.

  4. Place the executable in any folder of your choice (for example, C:\Tools\Arcanum\).

  5. Double-click Arcanum.exe to launch.

Choosing Release or Contained Versions

There are two types of executable releases available:

  1. Release Version: This is the standard version that requires the .NET runtime to be installed on your system and is therefor smaller in size. Choose this if you already have the .NET runtime installed.

  2. Contained Version: This version includes the .NET runtime bundled with it. It is larger in size but does not require any additional installations. Choose this if you prefer a self-contained setup.

This option is for those who want to build the project themselves.

Prerequisites

.NET SDK (.NET 8.0)

Git

    Installation from Source

    1. Clone the Repository: Open a terminal/command prompt and run:

      git clone https://github.com/The-Arcanum-Project/Arcanum.git cd Arcanum
    2. Build the Project: Compile in Release mode:

      dotnet build -c Release
    3. Locate the Executable: After a successful build, the compiled executable will be in: ./bin/Release/net8.0/Arcanum.exe

    4. Run Arcanum: Execute the program with::

      ./bin/Release/net8.0/Arcanum.exe
    30 December 2025