Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gairick-saha/8ed75791052851bd987db6774dbe892e to your computer and use it in GitHub Desktop.
Save gairick-saha/8ed75791052851bd987db6774dbe892e to your computer and use it in GitHub Desktop.
Installing Latest Erlang and Elixir on Ubuntu 20+
# Install the Erlang Solutions apt key; Alternative way https://askubuntu.com/questions/1286545/what-commands-exactly-should-replace-the-deprecated-apt-key
wget https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc
sudo apt-key add erlang_solutions.asc
# 'focal' is the latest available but an empty 'impish' directory exists and will probably be ready soon
sudo echo 'deb https://packages.erlang-solutions.com/ubuntu focal contrib' | sudo tee /etc/apt/sources.list.d/erlang-solutions.list
sudo apt update
sudo apt install esl-erlang elixir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment