Installing Gleam
Get ready to start making things
Get ready to start making things
To prepare your computer for Gleam development you’ll need to install Gleam, Erlang, and optionally install any Gleam plugins for your editor.
The easiest way to install Gleam on Linux, Windows, and Apple macOS is to download a prebuilt version of the compiler from the GitHub release page.
With Homebrew installed run the following:
brew update
brew install gleam
With MacPorts installed run the following:
sudo port install gleam
With Homebrew installed run the following:
brew update
brew install gleam
asdfis a tool for installing and managing multiple versions of programming languages at the same time. Install the asdf-gleam pluginto manage Gleam with asdf.
Gleam is available in the Community repository of Alpine Linux as a package gleam
. Install it with:
apk add gleam
Gleam is available through the Arch User Repository as package gleam
. You can use your preferred helper to install it or clone it for manual build from https://aur.archlinux.org/packages/gleam-git.
yay -S gleam
Gleam is available in the official package manager, but may need to be unmasked. Install it with:
sudo echo "dev-lang/gleam ~amd64" >> /etc/portage/package.accept_keywords
emerge --ask dev-lang/gleam
Gleam is available as part of the official packages repository. Install it with:
sudo xbps-install gleam
You can install Gleam on Fedora using the DNF package manager. Run the following command:
sudo dnf copr enable frostyx/gleam
sudo dnf install gleam
Gleam is available in ports, and also in binary packages. You may need
to use the latest
package repo, amend per instructions in /etc/pkg/FreeBSD.conf
. See below for adjusting your PATH to use latest
Erlang/OTP runtime and not just the standard OTP21:
$ pkg install -r FreeBSD lang/gleam lang/erlang-runtime23
$ export PATH=/usr/local/lib/erlang23/bin:$PATH
Gleam is available as a binary package. You can install it with:
doas pkg_add gleam
Gleam is available as part of the official packages repository. Install it with:
zypper install gleam
Gleam is available as part of the official packages repository. Install it with:
pkg install gleam
With Scoop installed on your computer run the following:
scoop install gleam
The compiler is written in the Rust programming language and so if you wish to build Gleam from source you will need to install the Rust compiler.
# Download the Gleam source code git repository
cd /tmp
git clone https://github.com/gleam-lang/gleam.git --branch $THE_LATEST_VERSION
cd gleam
# Build the Gleam compiler. This will take some time!
make install
# Verify the compiler is installed
# Prints "gleam $VERSION"
gleam --version
Gleam compiles to Erlang code, so Erlang needs to be installed to run Gleam code. Some of the above package managers (e.g. Homebrew) will install Erlang alongside Gleam automatically.
Precompiled builds for many popular operating systems can be downloaded from the Erlang solutions website.
Once Erlang has been installed you can check it is working by typing erl
-version
in your computer’s terminal. You will see version information like this if all is well:
erl -version
Erlang (SMP,ASYNC_THREADS) (BEAM) emulator version 12.1.5
Homebrew will install Erlang alongside Gleam automatically, though it can be manually installed by running the following:
brew update
brew install erlang
apk add erlang
pacman -S erlang
emerge --ask dev-lang/erlang
dnf install elixir erlang
# Add to /etc/apt/sources.list
deb http://binaries2.erlang-solutions.com/ubuntu/ jammy-esl-erlang-25 contrib
# Possible other lines depending on your `lsb_release -c`
# deb http://binaries2.erlang-solutions.com/debian/ bullseye-elixir-1.15 contrib
# deb http://binaries2.erlang-solutions.com/ubuntu/ bionic-mongooseim-6 contrib
# Add Erlang Solutions repo keys:
wget https://binaries2.erlang-solutions.com/GPG-KEY-pmanager.asc
sudo apt-key add GPG-KEY-pmanager.asc
# Update apt and install esl-erlang
sudo apt update
sudo apt install esl-erlang
Homebrew will install Erlang alongside Gleam automatically, though it can be manually installed by running the following:
brew update
brew install erlang
With MacPorts installed run the following:
sudo port install erlang
With Chocolatey installed on your computer run the following:
choco install erlang
With Scoop installed on your computer run the following:
scoop install erlang
The asdf version manager has a plugin for installing Erlang. Installation and usage instructions can be found here:
When using Erlang based dependencies (such as their web servers and HTTP clients) the rebar3 Erlang build tool may need to be installed. Install rebar3 by following the official rebar3 installation instructions.
Gleam plugins are available for several popular editors. If one exists for your editor of choice consider installing it for syntax highlighting and other niceties.
Now you have installed Gleam check out the Language Tour for an overview of the Gleam language.