Skip to content

Instantly share code, notes, and snippets.

@rakibulinux
Created February 3, 2020 00:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rakibulinux/e4798fc66f20a29c3700a379eb85018e to your computer and use it in GitHub Desktop.
Save rakibulinux/e4798fc66f20a29c3700a379eb85018e to your computer and use it in GitHub Desktop.
How to install Latest Erlang on Ubuntu 18.04 LTS
#!/bin/sh
wget -O- https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc | sudo apt-key add -
echo "deb https://packages.erlang-solutions.com/ubuntu bionic contrib" | sudo tee /etc/apt/sources.list.d/rabbitmq.list
sudo apt update
sudo apt -y install erlang
erl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment