Skip to content

Instantly share code, notes, and snippets.

@denvaar
Created November 28, 2017 15:04
Show Gist options
  • Save denvaar/109cdd4ed506a9e187320f438e0eb018 to your computer and use it in GitHub Desktop.
Save denvaar/109cdd4ed506a9e187320f438e0eb018 to your computer and use it in GitHub Desktop.
Setup Erland and Elixir on Amazon GNU/Linux
# Erlang
wget http://www.erlang.org/download/<latest_version>.tar.gz
tar -zxvf <latest_version>.tar.gz
# inside of the extracted directory:
./configure
make
sudo make install
# Elixir
wget https://github.com/elixir-lang/elixir/archive/<latest_version>.zip
unzip <latest_version>.zip
# inside of the unzipped directory:
make
# then add link to bin/ to your PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment