Skip to content

Instantly share code, notes, and snippets.

View ramgole's full-sized avatar

Ram Gole ramgole

  • Pune
View GitHub Profile
@ramgole
ramgole / install-r14b04.sh
Created October 13, 2011 14:03 — forked from bryanhunter/install-r14b03.sh
Script to install Erlang 14B04 (tested on a fresh Ubuntu 11.10 install)
# You will need to make this file executable (chmod u+x) and run it with sudo
apt-get -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev libwxgtk2.8-dev libglu1-mesa-dev fop xsltproc default-jdk
mkdir -p /src/erlang
cd /src/erlang
wget http://www.erlang.org/download/otp_src_R14B04.tar.gz
tar -xvzf otp_src_R14B04.tar.gz
chmod -R 777 otp_src_R14B04
cd otp_src_R14B04
./configure
make