Skip to content

Instantly share code, notes, and snippets.

@tgroshon
Last active April 27, 2023 10:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tgroshon/6bcd5b5f5ef6052e1190ca3ec1a378e7 to your computer and use it in GitHub Desktop.
Save tgroshon/6bcd5b5f5ef6052e1190ca3ec1a378e7 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
@tgroshon
Copy link
Author

tgroshon commented Jun 3, 2021

As of today, this installs Erlang/OTP 24 [erts-12.0.2] and Elixir 1.12.0 (compiled with Erlang/OTP 24)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment