Skip to content

Instantly share code, notes, and snippets.

@areski
Created June 30, 2014 10:10
Show Gist options
  • Save areski/e926a9b042a493375ead to your computer and use it in GitHub Desktop.
Save areski/e926a9b042a493375ead to your computer and use it in GitHub Desktop.
Script to install Erlang R17B01
# You will need to make this file executable (chmod u+x) and run it with sudo
apt-get update
apt-get --fix-missing -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libglu1-mesa-dev fop xsltproc libxml2-utils
mkdir -p /usr/src/erlang
cd /usr/src/erlang
wget http://www.erlang.org/download/otp_src_17.1.tar.gz
tar -xvzf otp_src_17.1.tar.gz
cd otp_src_17.1
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment