Setup
Latest release and release history (including older releases): https://github.com/vchelaru/Gum/releases
Gum Source Code: https://www.github.com/vchelaru/Gum
Download and unzip the .zip file and run the Gum.exe file.
Since Gum is a prebuilt file in a .zip, Windows blocks the file which results in the "Windows protected your PC" popup:

You can click More info, then Run anyway. Alternatively, you can right-click on the .zip file and select the option to unblock:

1.) Prerequisites
Gum is a windows application (executable) that uses dotnet 8. To run on Linux you need something that can emulate/interpret windows like WINE.
You will need these following prerequisites installed on your system, you can run the automated install script to have them installed automatically or you can install them yourself manually if you run into issues (see Manual Setup Steps section):
WINE
Winetricks
fonts (allfonts or the specific ones suggested)
dotnet8 (dotnetdesktop8)
unzip gum.zip into wine prefix and launch with wine prefix
2.) Automated Setup Linux
The following commands will go through the steps of downloading and running the setup_gum_linux.sh script. This script goes through the steps for you with minimal interaction required to setup your Linux environment to run the GUM tool using WINE. If you would prefer to do this setup manually, please refer to the Manual Setup Steps section below.
Download the setup_gum.linux.sh script https://raw.githubusercontent.com/vchelaru/Gum/master/setup_gum_linux.sh
Open a terminal and
cdto the directory that the script was downloaded to.Make the script executable and run the installation.
The script should download and install wine, winetricks, fonts, dotnet8, and gum.
It will also create a executable file at
~/bin/gumthat sets up wine automatically for you.When done, you should be able to type
gumat the command line to start Gum.
3.) Manually Install WINE and Winetricks
If the auto script fails to install try these steps.
If your distro is not listed bellow please use your preferred search engine to find out how to install wine and winetricks properly on your system.
You should be able to install WINE and Winetricks using your package manager. Open a terminal and run the following commands:
Ubuntu 22.04
Ubuntu 24.04
Fedora & Nobara (All Versions)
Linux Mint 20
Linux Mint 21
Linux Mint 22
4.) Manually install required winetricks verbs
These following commands will go through the steps setting up your Linux environment to run the GUM tool using WINE.
Open a new terminal and set our wine prefix for Gum with the following command:
Update winetricks if it is not using version 2025 or newer
Install Windows fonts using
winetrickswith the following command:
Install .NET Framework 8 using
winetrickswith the following command:
This command initiates the installation of .NET Framework 8. A total of two installer dialogs appear one after another. Follow the steps for both to complete the installation. This process may take a several minutes, so please be patient.
5.) Download and install Gum
Download the latest Gum Tool ZIP file from Github and save it to your preferred location. You can download it using the following command:
Unzip the downloaded Gum Tool ZIP file into the Program Files directory of the WINE folder, this will also remove any existing Gum Tool installed and the zip to clean up. Run the following command in the terminal:
Create a script to run the Gum Tool. Run the following command in the terminal:
Paste the following into the empty script created above called
gum.Update
GUM_WINE_PREFIX_PATHandGUM_EXE_PATHwith the correct values for you
To ensure you can run the Gum Tool from any directory, add the script directory to your PATH. Most Linux and macOS users using macOS 10.14 or lower, will be using the BASH shell.
For Bash SHELL
For ZSH Shell
Reload the shell configuration to apply the changes. Run the following command:
For BASH Shell
For ZSH Shell
Running the Gum Tool
Congratulations! You have now successfully set up the Gum Tool on Linux using WINE. You can open the Gum Tool by simply typing the following command in the terminal:
If the command doesn't work immediately, try closing and reopening the terminal.
Common errors and resolutions for Linux
Most issues are caused by a misconfigured wine installation.
High level requirements
Install
winefreshly into a new directory "wine prefix".Install
winetricks.Install the
required fonts, or use the allfonts verb into the correct wine prefix.Install dotnet8 using the new verb added in 2025 winetricks
dotnetdesktop8into the correct wine prefix.Configure winecfg to disable the "Allow the window manager to decorate the window" graphics setting for the correct wine prefix.
This fixes an issue where the menu is missing and you can't see/select FILE/EDIT/etc
launch gum.exe using wine from the correct wine prefix.
Bottles is an application that makes it easy to configure custom Wine prefixes and application specific configuration.
Official releases of bottles are released as Flatpak packages on the flathub repository. Use the install button if it's not already installed.

Next run the bottles application. The program uses the term "bottle" to refer to an isolated wine configuration. We'll need to create a new bottle specifically for Gum.
If this is your first time running bottles you will have a blank screen with a Create New Bottle button in the center. If you have used bottles before, then the top left corner will have a button to create a new bottle. Click on either of these.

This will open the Create New Bottle window. Give it a name (such as Gum), select Application and set the runner to sys-wine-10.0. The click the Create button.

This will set up wine and configure an initial wine configuration for that bottle. Since we used the Application option, it will install the required fonts we need.
Next we need to install the .net 8 desktop runtime. When the bottle is selected, click Options->Dependencies and click dotnetcoredesktop8. This will install the runtime directly into the bottle.



Now use the back button in the top left corner to go back to the main details page for your Gum bottle. Scroll to the bottom and click Tools -> Legacy Wine Tools to expand the options, and then click Configuration

This opens a wine configuration window. Under the Graphics tab, uncheck Allow the window manager to decorate the windows. This will make it so that it won't use native decorations on the window. If this is not done then it is likely that window decorations may cover the menu bar of the gum application.

Now click Ok to save the configuration and scroll back up to the top of the detail page of the Gum bottle. Click the Browse button for Browse C:/ drive.

This will open the file browser for where your bottle will have its C:/ file system. Create a Gum folder and unzip the latest gum release into this folder. Once done you can close this folder.
Next we need to add a shortcut to the Gum executable. In the bottle detail page, select the Add Shortcut button.

A file selection window will appear. Select the drive_c/Gum/Gum.exe file. That will add the program to the Gum bottle.

Pressing the play button should now successfully launch gum! Clicking the kebab menu next to the shortcut will give you the options to add it to your "Bottles" library to make it quicker to run through the bottles application, or to add a desktop entry to make it runnable without the bottles application in the future.

If you need to upgrade the Gum release in the future, you can use the Browse C:/ drive option again to find the location of the gum folder and extract the new release in there.
1) Prerequisites
Before proceeding, ensure that you have the following prerequisites installed on your system:
Homebrew
WINE
Winetricks
Install Homebrew
Homebrew is a package manager for macOS. If you haven't installed Homebrew yet, you can install it by following the instructions on the official Homebrew website.
Install WINE and Winetricks
You can install WINE and Winetricks using Homebrew. Open a terminal and run the following commands:
Configure and install Gum
Now you need to basically follow the LINUX script steps, but convert each command to mac specific commands like brew, etc.
NOTE: We have yet to get GUM working on Mac since the November 2025 release that utilizes dotnet8.
Automated Setup MacOS
The following goes through the steps do download and run the setup_gum_mac.sh automation script. This script goes through the steps for you with minimal interaction to setup your environment on macOS to run the GUM tool using WINE. If you would prefer to do this setup manually, please see the Manual Setup Steps section below.
WARNING: After this runs, gum fails to load and crashes. We are unable to determine why, if you have information to help please join the discord or submit a PR.
Download the setup_gum.mac.sh script https://raw.githubusercontent.com/vchelaru/Gum/master/setup_gum_mac.sh
Open a terminal and
cdto the directory that the script was downloaded toMake the script executable
Execute the script
Last updated
Was this helpful?

