title | section | layout |
---|---|---|
Installing Elixir |
install |
default |
{% include toc.html %}
The quickest way to install Elixir is through a distribution or using one of the available installers. If not available, then we recommend the precompiled packages or compiling it.
Note Elixir requires Erlang 18.0 or later. Many of the instructions below will automatically install Erlang for you. In case they do not, read the "Installing Erlang" section below.
The preferred option for installing Elixir. Choose your operating system and tool.
- Homebrew
- Update your homebrew to latest:
brew update
- Run:
brew install elixir
- Update your homebrew to latest:
- Macports
- Run:
sudo port install elixir
- Run:
- Arch Linux (Community repo)
- Run:
pacman -S elixir
- Run:
- openSUSE (and SLES 11 SP3+)
- Add Erlang devel repo:
zypper ar -f obs://devel:languages:erlang/ erlang
- Run:
zypper in elixir
- Add Erlang devel repo:
- Gentoo
- Run:
emerge --ask dev-lang/elixir
- Run:
- Fedora 17 and newer
- Run:
yum install elixir
- Run:
- Fedora 22 and newer
- Run:
dnf install elixir
- Run:
- FreeBSD
- From ports:
cd /usr/ports/lang/elixir && make install clean
- From pkg:
pkg install elixir
- From ports:
- Ubuntu 12.04 and 14.04 / Debian 7
- Add Erlang Solutions repo:
wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb
- Run:
sudo apt-get update
- Install the Erlang/OTP platform and all of its applications:
sudo apt-get install esl-erlang
- Install Elixir:
sudo apt-get install elixir
- Add Erlang Solutions repo:
- Web installer
- Download the installer
- Click next, next, ..., finish
- Chocolatey
cinst elixir
Those distributions will likely install Erlang automatically for you too. In case they don't, check the Installing Erlang section below.
Elixir provides a precompiled package for every release. First install Erlang and then download and unzip the Precompiled.zip file for the latest release.
Once the release is unpacked, you are ready to run the elixir
and iex
commands from the bin
directory, but we recommend you to add Elixir's bin path to your PATH environment variable to ease development.
There are many tools that allow developers to install and manage multiple Erlang and Elixir versions. They are useful if you can't install Erlang or Elixir as mentioned above or if your package manager is simply outdated. Here are some of those tools:
- asdf - install and manage different Elixir and Erlang versions
- exenv - install and manage different Elixir versions
- kiex - install and manage different Elixir versions
- kerl - install and manage different Erlang versions
If you would prefer to compile from source manually, don't worry, we got your back too!
You can download and compile Elixir in few steps. The first one is to install Erlang.
Next you should download the latest release, unpack it and then run make
inside the unpacked directory (note: if you are running on Windows, read this page on setting up your environment for compiling Elixir).
After compiling, you are ready to run the elixir and iex
commands from the bin directory. It is recommended that you add Elixir's bin path to your PATH environment variable to ease development.
In case you are feeling a bit more adventurous, you can also compile from master:
$ git clone https://github.com/elixir-lang/elixir.git
$ cd elixir
$ make clean test
If the tests pass, you are ready to go. Otherwise, feel free to open an issue in the issues tracker on Github.
The only prerequisite for Elixir is Erlang, version 18.0 or later, which can be easily installed with Precompiled packages. In case you want to install it directly from source, it can be found on the Erlang website or by following the excellent tutorial available in the Riak documentation.
For Windows developers, we recommend the precompiled packages. Those on a Unix platform can probably get Erlang installed via one of the many package distribution tools.
After Erlang is installed, you should be able to open up the command line (or command prompt) and check the Erlang version by typing erl
. You will see some information as follows:
Erlang/OTP 18 (erts-7) [64-bit] [smp:2:2] [async-threads:0] [hipe] [kernel-poll:false]
Notice that depending on how you installed Erlang, Erlang binaries won't be available in your PATH. Be sure to have Erlang binaries in your PATH, otherwise Elixir won't work!
It is highly recommended to add Elixir's bin path to your PATH environment variable to ease development.
On Windows, there are instructions for different versions explaining the process.
On Unix systems, you need to find your shell profile file, and then add to the end of this file the following line reflecting the path to your Elixir installation:
export PATH="$PATH:/path/to/elixir/bin"